/* Custom Styles for About Us Redesign */

:root {
    --primary-green: #7DB921;
    --primary-yellow: #F9E10B;
    --dark-bg: #1A1A1A;
    --gradient-green-yellow: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
}

.about-page-wrapper {
    overflow-x: hidden;
}

/* Hero Section */
.about-hero-section {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.about-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--gradient-green-yellow);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
    opacity: 0.8;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Dark Section with Diagonal */
.dark-section {
    background: var(--dark-bg);
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.diagonal-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: var(--gradient-green-yellow);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    z-index: 1;
}

.dark-section h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.dark-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ccc;
}

/* Vision & Mission Diamond Shapes */
.vision-mission-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.diamond-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.diamond-box {
    width: 400px;
    height: 400px;
    background: var(--gradient-green-yellow);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 60px;
    box-shadow: 0 20px 40px rgba(125, 185, 33, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid #fff;
}

.diamond-box:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 30px 60px rgba(125, 185, 33, 0.3);
}

.diamond-content {
    transform: rotate(-45deg);
    text-align: center;
    color: #000;
    padding: 40px;
}

.diamond-content i {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.diamond-content h3 {
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.diamond-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Inception Section */
.inception-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Regulatory Section Custom */
.dark-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 200px;
    height: 100px;
    background: var(--gradient-green-yellow);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    opacity: 0.5;
}

/* R&D Support List */
.rd-support-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.rd-list {
    list-style: none;
    padding: 0;
}

.rd-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.rd-list li i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 1.4rem;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .about-hero-content h1 {
        font-size: 3rem;
    }
    .about-hero-section {
        height: 400px;
    }
    .diamond-container {
        gap: 30px;
        margin-top: 30px;
    }
    .diamond-box {
        transform: none !important;
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        border-radius: 15px;
    }
    .diamond-box:hover {
        transform: translateY(-5px) !important;
    }
    .diamond-content {
        transform: none !important;
        padding: 30px;
    }
    .diagonal-shape {
        display: none;
    }
    .dark-section::after {
        display: none;
    }
    .dark-section, .vision-mission-section, .rd-support-section {
        padding: 60px 0;
    }
    .about-v1-area-1 {
        padding: 60px 0 !important;
    }
    .inner-content {
        padding-left: 0 !important;
    }
    .inception-box {
        padding-right: 20px !important;
        margin-bottom: 40px;
    }
    .image-box.text-right {
        text-align: center !important;
        margin-top: 40px;
    }
    .image-box img, .dark-section img {
        width: 100% !important;
        max-width: 500px;
        margin: 30px auto 0;
        display: block;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    .about-hero-section {
        height: 350px;
    }
    .logos {
        flex-direction: column;
        gap: 15px !important;
        align-items: flex-start !important;
    }
    .inner-content h2 {
        font-size: 2rem;
    }
    .diamond-content i {
        font-size: 3rem;
    }
}
