:root {
    --gold: #c5a059;
    --gold-light: #f7dfa1;
    --emerald: #064e3b;
    --forest: #065f46;
    --dark: #0f172a;
    --light-bg: #f8fafc;
    --gold-gradient: linear-gradient(135deg, #c5a059, #f7dfa1, #b08d4a);
}

.profile-premium-page {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

/* Utility Classes */
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold);
}

.section-label {
    display: block;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.gold-line {
    width: 80px;
    height: 5px;
    background: var(--gold-gradient);
    border-radius: 10px;
    margin-bottom: 30px;
}

.gold-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 5px;
    margin-top: 30px;
}

/* ========== 1. MEDIUM HERO ========== */
.hero-medium {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background: url('/images/Profile/legacy.webp') center top / cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(6, 78, 59, 0.9) 100%);
    z-index: 2;
    backdrop-filter: blur(1px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.75rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== 2. INTRODUCTION SECTION ========== */
.intro-section {
    padding: 80px 0;
    background: white;
}

.intro-lead {
    font-size: 1.35rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.intro-feature {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--emerald);
    border: 2px solid transparent;
    transition: all 0.4s;
}

.intro-feature:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.1);
    transform: translateY(-3px);
}

.intro-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.intro-image-box {
    position: relative;
}

.intro-main-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.image-floating-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: white;
    padding: 25px 30px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    text-align: center;
    border-bottom: 5px solid var(--gold);
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--emerald);
    line-height: 1;
}

.badge-text {
    color: #64748b;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* ========== 3. DIRECTOR SECTION (REDESIGNED) ========== */
.director-section {
    padding: 60px 0;
    background: white;
}

.director-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.director-item:last-child {
    margin-bottom: 0;
}

.director-item.reverse {
    flex-direction: row-reverse;
}

.director-image-box {
    flex: 0 0 550px;
    max-width: 550px;
    position: relative;
}

.director-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
    object-position: center 2%;
    /* Prevents head clipping */
    background: #f8fafc;
}

.director-content {
    flex: 1;
}

.director-label {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.director-h-name {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--emerald);
    line-height: 1.1;
    margin-bottom: 30px;
}

.director-para {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.director-para:last-child {
    margin-bottom: 0;
}





/* ========== 4. COMPANY INFO (HOME-PAGE PRODUCT CARD STYLE) ========== */
:root {
    --primary-green: #22c55e;
    --dark-green: #022c22;
    --text-muted: #14532d;
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #15803d 100%);
}

.intro-section {
    padding: 120px 0;
    background: #f0fdf4;
    /* Match home page light green bg */
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-style-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-bounce);
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-style-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(68, 160, 91, 0.15);
    border-color: var(--primary-green);
}

.product-style-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.product-style-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.product-style-card:hover .product-style-img img {
    transform: scale(1.1);
}

.product-style-content {
    padding: 40px 25px 30px;
    text-align: center;
    flex: 1;
}

.product-style-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin: -70px auto 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0 10px 25px rgba(68, 160, 91, 0.4);
    border: 4px solid white;
}

.product-style-content h4 {
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-green);
    line-height: 1.3;
}

.product-style-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}





/* Journey/Milestone Layout */
.bio-journey {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(6, 78, 59, 0.1);
    margin-top: 40px;
}

.journey-item {
    position: relative;
    margin-bottom: 40px;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.journey-marker {
    position: absolute;
    left: -41px;
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    box-shadow: 0 0 0 5px white;
    z-index: 2;
}

.journey-item:first-child .journey-marker::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -2px;
    width: 2px;
    height: 40px;
    background: var(--light-bg);
    z-index: 1;
}

.journey-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.journey-item .journey-marker::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    z-index: -1;
}


.director-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
}

.d-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.d-stat-label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== 4. VISION MISSION VALUES ========== */
.vmv-section {
    padding: 120px 0;
    background: white;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.vmv-card {
    background: var(--light-bg);
    padding: 50px 40px;
    border-radius: 35px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vmv-card:hover {
    border-color: var(--gold);
    transform: translateY(-15px);
    box-shadow: 0 35px 70px rgba(197, 160, 89, 0.2);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: transform 0.5s;
}

.vmv-card:hover .vmv-icon {
    transform: scale(1.1) rotate(5deg);
}

.vmv-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.vmv-card p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.vmv-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.vmv-card:hover .vmv-glow {
    opacity: 1;
}

/* ========== 5. AWARDS 3D FLIP SECTION ========== */
.awards-3d-section {
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
}

.awards-3d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.flip-card {
    height: 500px;
    perspective: 1500px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    overflow: hidden;
}

.flip-card-front {
    background: #f8fafc;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
}

.flip-front-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.95), transparent);
    padding: 30px;
    color: white;
}

.flip-year {
    background: var(--gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.flip-front-overlay h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 800;
}

.flip-card-back {
    background: var(--gold-gradient);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    text-align: center;
    color: white;
}

.flip-back-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.flip-card-back h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.flip-card-back p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.flip-year-back {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
}

/* ========== 6. CTA SECTION ========== */
.cta-section {
    padding: 80px 0;
    background: var(--emerald);
    border-radius: 60px 60px 0 0;
}

.cta-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    color: white;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.5);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--emerald);
    border-color: white;
    transform: translateY(-5px);
}

/* ========== ANIMATIONS ========== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-up {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up {
    transform: translateY(60px);
}

.active {
    opacity: 1;
    transform: translate(0);
}

/* ========== RESPONSIVE ========== */


/* ================= UTILITY CLASSES FOR INLINE REMOVAL ================= */
.delay-var-0 {
    --delay: 0s;
}

.delay-var-2 {
    --delay: 0.2s;
}

.delay-var-4 {
    --delay: 0.4s;
}

.delay-var-15 {
    --delay: 0.15s;
}

.delay-var-3 {
    --delay: 0.3s;
}

.delay-var-45 {
    --delay: 0.45s;
}

.delay-var-6 {
    --delay: 0.6s;
}

/* ================= NEW SECTIONS CSS ================= */
.text-justify {
    text-align: justify;
}

.product-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.product-item {
    background: white;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-item i {
    color: var(--gold);
}

.infra-box {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-bottom: 5px solid var(--gold);
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cert-badge {
    background: white;
    border: 1px solid var(--gold-light);
    padding: 15px 35px;
    border-radius: 15px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.2);
    border-color: var(--gold);
}

.cert-badge i {
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-box {
    background: linear-gradient(135deg, var(--dark) 0%, var(--forest) 100%);
    color: white;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-detail-item {
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gold-light);
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: white;
    text-decoration: underline;
}

.hr-stat-box {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hr-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 10px;
}

.hr-label {
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ================= CONTENT BLOCKS ================= */
.content-block {
    background: white;
    padding: 50px;
    border-radius: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--gold);
    transition: all 0.4s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(197, 160, 89, 0.15);
}

.content-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.content-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--emerald);
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.9;
    margin: 0;
}

.content-text strong {
    color: var(--emerald);
    font-weight: 700;
}

/* Responsive adjustments for content blocks */
