/* ================= */
/* About Page Styles */
/* ================= */
.utv-about-page {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    color: #111;
    padding: 20px 10px;
        background: linear-gradient(270deg, #3ad66d, #38a35b, #1b3d21, #2f8e4b);
    background-size: 800% 800%;
    animation: heroGradient 15s ease infinite;
     border-radius: 12px;
}

/* Logo */
.unlocktoview-logo {
    text-align: center;
    margin-bottom: 20px;
}

/* Hero Section */
.utv-about-page .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 40px 20px;
    min-height: 60vh;
    color: #fff;
    overflow: hidden;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
 h1 {
    color:#fff;
}
.hero-inner.utv-container {
    max-width: 1200px;
    width: 100%;
}

/* Hero Content */
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-content .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 25px;
}

/* Hero Buttons */
.hero-buttons .btn-primary {
    background-color: #fff;
    color: #2f8e4b;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.hero-buttons .btn-primary:hover {
    background-color: #2f8e4b;
    color: #fff;
}

/* Hero Video */
.hero-video video {
    width: 100%;
    max-width: 700px;
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ================= */
/* Top Menu Links */
/* ================= */
#utv-menu {
    margin-bottom: 30px;
    text-align: center;
}

.utv-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size:1.2em;
}

.utv-nav-links li {
    display: inline-block;
}

.utv-nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.utv-nav-links a:hover {
    background-color: #1b3d21;
    
}

/* ================= */
/* Highlights Section */
/* ================= */
.highlights-section {
    margin-top: 40px;
}

.highlights-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.highlight-item .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.highlight-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #2f8e4b;
}

.highlight-item p {
    font-size: 1rem;
    margin: 0;
}
