.about-ora-hero {
    min-height: 100vh !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0 !important;
    padding: 120px 0 !important;
}

.about-ora-hero .container {
    position: relative;
    z-index: 5;
}

.about-ora-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 15, 26, 0.92) 0%, rgba(8, 15, 26, 0.7) 100%);
    z-index: 1;
}

.about-ora-hero h1 {
    font-size: clamp(2rem, 5vw, 3.8rem);
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    max-width: 900px;
    line-height: 1.1;
    color: var(--white);
}

.about-ora-hero h1::after {
    background: var(--accent);
}

/* Base Content */
.content-max-900 {
    max-width: 900px;
    margin: 0 auto;
}

/* Emphasis Card */
.emphasis-card {
    background: var(--bg-creme);
    padding: 60px;
    border-radius: 30px;
    margin-bottom: 120px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.emphasis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--accent);
}

/* Structure Cards */
.structure-card {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.structure-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-light);
}

.structure-card i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 24px;
    display: inline-block;
}

/* Excellence Rows */
.excellence-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.excellence-img-wrapper {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 500px;
}

.excellence-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Founder Block */
.founder-card {
    max-width: 1150px;
    margin: 0 auto 150px;
    background: var(--bg-creme);
    border-radius: 50px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.founder-info {
    padding: 100px;
}

.founder-expertise {
    padding: 100px;
}

/* Executive Box */
.executive-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 80px;
    border: 2px dashed #e5e8ec;
    border-radius: 50px;
    background: #fafbfc;
}

/* Product Tier Cards */
.tier-card {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tier-card.dark {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

/* Tags & Shared */
.tag {
    background: #f0f4f8;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 4px;
    display: inline-block;
}

.quote-box {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    border-left: 5px solid var(--accent);
    padding-left: 30px;
    color: var(--primary);
    font-weight: 500;
    margin: 40px 0;
}

/* ============================================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================================ */

@media (max-width: 991px) {
    .excellence-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

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

    .founder-card {
        grid-template-columns: 1fr;
    }

    .founder-info, .founder-expertise {
        padding: 50px 30px;
    }

    .founder-info {
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .tier-card {
        margin-bottom: 30px;
    }

    .grid-2, .grid-3, .grid-4 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* Ensure grid classes have display: grid */
.grid-2, .grid-3, .grid-4 {
    display: grid;
}

@media (max-width: 768px) {
    .emphasis-card {
        padding: 40px 24px;
        border-radius: 20px;
        margin-bottom: 60px;
    }

    .structure-card {
        padding: 35px 25px;
    }

    .excellence-row {
        margin-bottom: 60px;
    }

    .excellence-content h3 {
        font-size: 1.8rem !important;
    }

    .founder-info h3 {
        font-size: 2.5rem !important;
    }

    .executive-box {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .tier-card {
        padding: 40px 25px;
    }

    .scale-img-wrapper {
        height: 350px !important;
    }
}

/* Hero Content Adjustments */
.custom-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.custom-list.two-cols {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .custom-list.two-cols {
        grid-template-columns: 1fr;
    }
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.custom-list li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.custom-list li span {
    font-weight: 600;
    color: var(--primary);
}

.hero-content-wrapper {
    max-width: 850px;
}

.about-ora-hero .description {
    font-size: clamp(1rem, 1.5vw, 1.2rem) !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.8 !important;
    max-width: 100% !important;
}

.about-ora-hero .description:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        max-width: 100%;
    }
}

.image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 600px;
}

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

.tag {
    background: #f0f4f8;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 4px;
    display: inline-block;
}

/* Updated Section Title & Gold Line Logic */
.section-title, h2 {
    position: relative;
    width: 100%;
}

.section-title::after, 
h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    border-radius: 2px;
}

/* Default Alignment (Left in LTR, Right in RTL) */
html[dir="ltr"] .section-title::after, 
html[dir="ltr"] h2::after {
    margin-right: auto;
    margin-left: 0;
}

html[dir="rtl"] .section-title::after, 
html[dir="rtl"] h2::after {
    margin-left: auto;
    margin-right: 0;
}

/* Centered Alignment */
.section-title.center::after,
.section-title.text-center::after,
.text-center .section-title::after,
.text-center h2::after,
[style*="text-align: center"] h2::after,
[style*="text-align:center"] h2::after {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Right alignment override for specific cases if needed */
.text-end .section-title::after,
.text-end h2::after {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Content spacing adjustments */
.reputation-content h2 {
    margin-top: 10px !important;
    margin-bottom: 25px !important;
}

@media (max-width: 991px) {
    .grid-2 {
        gap: 40px !important; /* Reduce gap on smaller screens */
    }
}

/* Portfolio Card Design */
.portfolio-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: default;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-card-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.portfolio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.portfolio-card:hover .portfolio-card-img img {
    transform: scale(1.1);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 34, 58, 0.9) 0%, rgba(18, 34, 58, 0.2) 60%, transparent 100%);
    z-index: 2;
}

.portfolio-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 3;
    color: var(--white);
}

.portfolio-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.portfolio-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 12px;
    line-height: 1.3;
}

.portfolio-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.portfolio-items .dot {
    color: var(--accent);
    font-weight: 900;
}

@media (max-width: 768px) {
    .portfolio-card {
        height: 380px;
    }
    
    .portfolio-card-content {
        padding: 30px;
    }
    
    .portfolio-title {
        font-size: 1.4rem;
    }
}

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    box-shadow: var(--shadow-sm);
    border-color: var(--accent-light);
}

.faq-item summary {
    padding: 22px 25px;
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary .icon {
    transition: transform 0.3s ease;
    color: var(--accent);
    font-size: 1.1rem;
}

.faq-item[open] summary .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Footer disclaimer */
.page-footer-note {
    background: var(--bg-creme);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
