/* ========================================
   ABOUT PAGE - MODERN DARK THEME REDESIGN
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.about-hero-modern {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: heroFloat 25s ease-in-out infinite;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: -100px;
    left: -100px;
    animation-delay: -8s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: 40%;
    left: 40%;
    animation-delay: -16s;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(5deg);
    }

    50% {
        transform: translate(-30px, 30px) rotate(-5deg);
    }

    75% {
        transform: translate(20px, 20px) rotate(3deg);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 5px;
}

.hero-stat .stat-desc {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    margin-bottom: 10px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        height: 40px;
    }

    50% {
        opacity: 1;
        height: 50px;
    }
}

/* ========================================
   WHO WE ARE SECTION
   ======================================== */
.who-we-are-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a3a 100%);
    overflow: hidden;
}

.section-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.bg-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 20%;
    right: -100px;
}

.bg-shape-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: 10%;
    left: -50px;
}

.image-showcase {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-frame img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30px;
    left: -20px;
    animation-delay: -2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1rem;
}

.floating-card span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.content-block {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border-color: rgba(255, 215, 0, 0.3);
}

.feature-pill i {
    color: #ffd700;
}

/* ========================================
   VISION & MISSION SECTION
   ======================================== */
.vision-mission-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a3a 0%, #0d0d2b 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading-center {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-subtext {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.vm-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.vm-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vm-card-inner {
    padding: 40px;
    position: relative;
}

.vm-icon-wrap {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.vm-vision .vm-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.vm-mission .vm-icon {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: #fff;
}

.vm-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.5;
}

.vm-vision .vm-icon-glow {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.vm-mission .vm-icon-glow {
    background: linear-gradient(135deg, #00b894, #00cec9);
}

.vm-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.vm-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.vm-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.vm-vision .vm-card-accent {
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.vm-mission .vm-card-accent {
    background: linear-gradient(90deg, #00b894, #00cec9);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
}

.why-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.why-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.why-shape-1 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    top: 10%;
    left: -100px;
}

.why-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #a29bfe, #6c5ce7);
    bottom: 10%;
    right: -80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.feature-card-wide {
    grid-column: span 1;
}

/* Center the last two cards (4th and 5th) in the second row as a group for desktop */
@media (min-width: 993px) {

    /* Create a 6-column subgrid to allow precise centering */
    .features-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    /* First three cards span 2 columns each (total 6 columns) */
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        grid-column: span 2;
    }

    /* Fourth card starts at column 2, spans 2 columns */
    .feature-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    /* Fifth card starts at column 4, spans 2 columns */
    .feature-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.feature-card-inner {
    padding: 35px 30px;
    position: relative;
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.feature-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

/* ========================================
   MEET CEO SECTION
   ======================================== */
.ceo-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #0d0d2b 0%, #1a1a3a 100%);
    overflow: hidden;
}

.ceo-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ceo-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.ceo-shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    top: -100px;
    right: 20%;
}

.ceo-shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    bottom: -50px;
    left: 10%;
}

.ceo-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.ceo-card-inner {
    padding: 0;
}

.ceo-image-modern {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.ceo-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ceo-image-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(26, 26, 58, 1), transparent);
    pointer-events: none;
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.ceo-content-modern {
    padding: 50px 40px;
}

.ceo-name-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ceo-name-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.ceo-bio-modern {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.ceo-credentials-modern {
    margin-bottom: 30px;
}

.ceo-credentials-modern h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ceo-credentials-modern h4 i {
    color: #ffd700;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.credential-item i {
    color: #00b894;
    margin-top: 3px;
    flex-shrink: 0;
}

.ceo-quote-modern {
    position: relative;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: 15px;
    margin-bottom: 30px;
}

.ceo-quote-modern i {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: rgba(255, 215, 0, 0.3);
}

.ceo-quote-modern p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
}

.ceo-social-modern {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ======================================== */
@media (max-width: 992px) {
    .about-hero-modern {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-stat .stat-value {
        font-size: 2rem;
    }

    .who-we-are-modern,
    .vision-mission-modern,
    .why-choose-modern,
    .ceo-modern {
        padding: 80px 0;
    }

    .section-heading,
    .section-heading-center {
        font-size: 2rem;
    }

    .vm-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-wide {
        grid-column: span 2;
    }

    .floating-card {
        display: none;
    }

    .ceo-image-modern {
        min-height: 400px;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-modern {
        min-height: 50vh;
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .who-we-are-modern,
    .vision-mission-modern,
    .why-choose-modern,
    .ceo-modern {
        padding: 60px 0;
    }

    .section-header-center {
        margin-bottom: 40px;
    }

    .section-heading,
    .section-heading-center {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-wide {
        grid-column: span 1;
    }

    .ceo-card-modern {
        border-radius: 20px;
    }

    .ceo-image-modern {
        min-height: 300px;
    }

    .ceo-content-modern {
        padding: 30px 25px;
    }

    .ceo-name-modern {
        font-size: 1.8rem;
    }

    .vm-card-inner {
        padding: 30px;
    }
}

@media (max-width: 576px) {

    .hero-badge,
    .section-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stat .stat-value {
        font-size: 1.6rem;
    }

    .section-heading,
    .section-heading-center {
        font-size: 1.5rem;
    }

    .feature-pills {
        flex-direction: column;
    }

    .feature-card-inner,
    .vm-card-inner {
        padding: 25px 20px;
    }

    .ceo-name-modern {
        font-size: 1.5rem;
    }

    .ceo-bio-modern {
        font-size: 0.95rem;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }
}


/* ========================================
   AWARDS & ACHIEVEMENTS - MODERN REDESIGN
   ======================================== */

/* Section Container */
.awards-achievements-modern {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    overflow: hidden;
}

/* Animated Background Shapes */
.awards-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.awards-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.awards-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.awards-bg-shapes .shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    top: 50%;
    right: -80px;
    animation-delay: -7s;
}

.awards-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00b894, #00cec9);
    bottom: -50px;
    left: 30%;
    animation-delay: -14s;
}

@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);
    }
}

/* Section Header */
.awards-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.awards-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd700;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.awards-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.awards-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats Counter Row */
.awards-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bento Grid Layout */
.awards-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* All Bento Cards - Base Glassmorphism Style */
.bento-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.bento-card-inner {
    padding: 30px;
    height: 100%;
    position: relative;
}

/* Featured Award Card */
.bento-featured {
    grid-column: span 4;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.08));
    border-color: rgba(255, 215, 0, 0.3);
    min-height: 280px;
}

.bento-featured .bento-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-badge i {
    margin-right: 5px;
}

.award-trophy-icon {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
    }
}

.bento-featured h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.award-org {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

.award-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

/* Awards List Card */
.bento-awards-list {
    grid-column: span 8;
}

.bento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
}

.bento-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.awards-list-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.awards-list-modern li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.awards-list-modern li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.award-bullet {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.award-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.award-content strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
}

.award-content span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* World Record Card */
.bento-record {
    grid-column: span 4;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.1));
    border-color: rgba(102, 126, 234, 0.3);
    min-height: 220px;
}

.bento-record .bento-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.record-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.record-badge i {
    margin-right: 5px;
}

.record-icon {
    font-size: 3rem;
    color: #a29bfe;
    margin-bottom: 15px;
}

.bento-record h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.bento-record p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Achievement Cards */
.bento-achievement {
    grid-column: span 4;
    min-height: 180px;
}

.bento-achievement:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(0, 184, 148, 0.15), rgba(0, 206, 201, 0.08));
    border-color: rgba(0, 184, 148, 0.3);
}

.bento-achievement:nth-of-type(2) {
    background: linear-gradient(135deg, rgba(253, 121, 168, 0.15), rgba(224, 86, 253, 0.08));
    border-color: rgba(253, 121, 168, 0.3);
}

.bento-achievement .bento-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bento-achievement:nth-of-type(1) .achievement-icon {
    color: #00b894;
}

.bento-achievement:nth-of-type(2) .achievement-icon {
    color: #fd79a8;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.bento-achievement p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.bento-achievement p small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Milestones Card */
.bento-milestones {
    grid-column: span 4;
}

/* Center the Personal Milestones card for desktop */
@media (min-width: 993px) {
    .bento-milestones {
        grid-column: 5 / span 4;
    }
}

.milestones-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.milestone-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(116, 185, 255, 0.2), rgba(9, 132, 227, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #74b9ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.milestone-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.milestone-text strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.milestone-text span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .awards-achievements-modern {
        padding: 80px 0;
    }

    .awards-main-title {
        font-size: 2.5rem;
    }

    .awards-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .awards-bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .bento-featured {
        grid-column: span 6;
    }

    .bento-awards-list {
        grid-column: span 6;
    }

    .bento-record {
        grid-column: span 6;
    }

    .bento-achievement {
        grid-column: span 3;
    }

    .bento-milestones {
        grid-column: span 6;
    }

    .awards-list-modern {
        grid-template-columns: 1fr;
    }
}

/* Small Tablet (768px and below) */
@media (max-width: 768px) {
    .awards-achievements-modern {
        padding: 60px 0;
    }

    .awards-section-header {
        margin-bottom: 40px;
    }

    .awards-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .awards-main-title {
        font-size: 2rem;
    }

    .awards-subtitle {
        font-size: 1rem;
    }

    .awards-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 35px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-icon {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .awards-bento-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .bento-featured,
    .bento-awards-list,
    .bento-record,
    .bento-achievement,
    .bento-milestones {
        grid-column: span 1;
    }

    .bento-card-inner {
        padding: 25px 20px;
    }

    .bento-featured {
        min-height: 240px;
    }

    .award-trophy-icon {
        font-size: 3rem;
    }

    .bento-featured h3 {
        font-size: 1.3rem;
    }

    .bento-record {
        min-height: 180px;
    }

    .record-icon {
        font-size: 2.5rem;
    }

    .bento-record h4 {
        font-size: 1.2rem;
    }

    .bento-achievement {
        min-height: 150px;
    }

    .achievement-icon {
        font-size: 2rem;
    }

    .achievement-number {
        font-size: 1.6rem;
    }

    .awards-bg-shapes .shape-1 {
        width: 250px;
        height: 250px;
    }

    .awards-bg-shapes .shape-2 {
        width: 200px;
        height: 200px;
    }

    .awards-bg-shapes .shape-3 {
        width: 180px;
        height: 180px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .awards-achievements-modern {
        padding: 50px 0;
    }

    .awards-main-title {
        font-size: 1.75rem;
    }

    .awards-subtitle {
        font-size: 0.9rem;
    }

    .awards-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-icon {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .bento-card-inner {
        padding: 20px 15px;
    }

    .bento-header {
        gap: 10px;
        margin-bottom: 18px;
    }

    .bento-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .bento-header h4 {
        font-size: 1.1rem;
    }

    .awards-list-modern li {
        padding: 12px;
        gap: 10px;
    }

    .award-bullet {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .award-content strong {
        font-size: 0.85rem;
    }

    .award-content span {
        font-size: 0.7rem;
    }

    .milestone-item {
        padding: 12px;
        gap: 12px;
    }

    .milestone-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .milestone-text strong {
        font-size: 0.9rem;
    }

    .milestone-text span {
        font-size: 0.75rem;
    }

    .featured-badge,
    .record-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
}



/* Meet Our CEO Section Styling */
.meet-ceo {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.meet-ceo::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 153, 255, 0.03);
    top: -150px;
    left: -150px;
    z-index: 0;
}

.meet-ceo::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 153, 255, 0.03);
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.meet-ceo .section-title {
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.meet-ceo h2 {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.meet-ceo h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ceo-image-container {
    position: relative;
    z-index: 1;
}

.ceo-image {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.ceo-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ceo-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 10px;
    top: 15px;
    left: 15px;
    z-index: -1;
}

.ceo-info {
    position: relative;
    z-index: 1;
    padding: 20px 0 0 20px;
}

.ceo-name {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

.ceo-title {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.ceo-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
}

.credentials-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.credentials-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.credentials-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 1rem;
    color: #495057;
}

.credentials-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary);
}

.ceo-quote {
    font-style: italic;
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    margin: 25px 0;
    color: #495057;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--light);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .ceo-info {
        padding: 30px 0 0 0;
    }

    .ceo-image::after {
        display: none;
    }
}

@media (max-width: 991px) {
    /* CEO section responsive adjustments */
}


@media (max-width: 768px) {
    .meet-ceo {
        padding: 60px 0;
    }

    .ceo-name {
        font-size: 1.8rem;
    }

    .ceo-title {
        font-size: 1rem;
    }

    .ceo-bio {
        font-size: 1rem;
    }
}