 @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --epf-slate: #3b4d61;
    --epf-sage: #8da399;
    --epf-ochre: #d6ad60;      /* Matches the yellow button in reference */
    --epf-terracotta: #b05c45;
}

body, html {
    height: 100%;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

.bg-hero {
    min-height: 100vh;
}

.video-background {
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    top: 0;
    left: 0;
    background: linear-gradient(to right, #000000b3, #0000004d);
    z-index: -1;
}

.sidebar-glass {
    background: var(--epf-ochre); /* Dark semi-transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 1px solid #ffffff1a;
    height: 100%;
    overflow-y: auto;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 0.9;
    text-transform: uppercase;
}

.btn-brand-primary {
    background-color: var(--epf-ochre);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 12px 30px;
}

.btn-brand-primary:hover {
    background-color: #c59d50;
    color: #000;
}

.btn-brand-outline {
    border: 1px solid #ffffff80;
    color: #fff;
    padding: 12px 30px;
}

.btn-brand-outline:hover {
    background-color: #fff;
    color: #000;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: white !important;
}

.nav-link:hover {
    color: #fff !important;
}

.feature-item {
    border-bottom: 1px solid #0000001a;
    transition: background 0.3s;
    cursor: pointer;
}

.feature-item:hover {
    background: #ffffff08;
}

.arrow-icon {
    transform: rotate(-45deg);
    transition: transform 0.3s;
}

.feature-item:hover .arrow-icon {
    transform: rotate(0deg);
    color: var(--epf-ochre);
}

.sidebar-card-video {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
    filter: brightness(0.8);
    cursor: pointer;
}

.video-container {
    position: relative;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ffffffe6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button:hover {
    background: #d6ad60;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #000;
    font-size: 24px;
    margin-left: 4px;
}

.stats-section {
    background: black;
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--epf-ochre), var(--epf-terracotta));
}

.stat-box {
    background: #ffffff0d;
    border-left: 4px solid var(--epf-ochre);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s;
}

.stat-box:hover {
    background: #ffffff14;
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--epf-ochre);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: #ffffff99;
}

/* Circular Diagram Section */
.circular-section {
    background: black;
    padding: 100px 0;
}

.circle-diagram {
    position: relative;
    width: 500px;
    height: 500px;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--epf-ochre);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.circle-item {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--epf-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px #0000001a;
}

.circle-item-1 { 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}

.circle-item-2 { 
    top: 15%; 
    right: 5%; 
}

.circle-item-3 { 
    bottom: 15%; 
    right: 5%; 
}

.circle-item-4 { 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%); 
}

.circle-item-5 { 
    bottom: 15%; 
    left: 5%; 
}

.circle-item-6 { 
    top: 15%; 
    left: 5%; 
}

.circle-number {
    position: absolute;
    top: -10px;
    left: 50px;
    width: 35px;
    height: 35px;
    background: var(--epf-ochre);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    font-size: 1rem;
}

@media (width < 768px) {
    .circle-diagram { 
        width: 350px; 
        height: 350px; 
    }

    .circle-center { 
        width: 150px; 
        height: 150px; 
        font-size: 0.75rem; 
    }

    .circle-item { 
        width: 100px; 
        height: 100px; 
        font-size: 0.7rem; 
        padding: 10px; }
}

.table-section {
    background: black;
    padding: 100px 0;
}

.comparison-table {
    border: none;
    background: #ffffff0d;
}

.comparison-table thead th {
    background: var(--epf-ochre);
    color: #000;
    font-weight: 700;
    padding: 20px;
    border: none;
}

.comparison-table tbody td {
    padding: 20px;
    border-bottom: 1px solid #ffffff1a;
    vertical-align: middle;
    color: #fff;
    background: #ffffff08;
}

.comparison-table tbody tr:hover td {
    background: #ffffff14;
}

/* Flow Diagram Section */
.flow-section {
    background: black;
    padding: 100px 0;
}

.icon{
    width:35px; 
    height:35px; 
    text-decoration:none;
}

.logo{
    height: 40px; 
    width: auto;
}