/* Powertel Page Specific Styles */

/* Sliding Text Animation */
.sliding-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section - Enhanced */
.powertel-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .powertel-hero {
        min-height: 350px;
    }
}

.powertel-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.powertel-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.powertel-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.powertel-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white-color);
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 4rem 2rem;
}

@media screen and (max-width: 768px) {
    .powertel-hero .hero-content {
        min-height: 350px;
        padding: 2rem 1.5rem;
    }
}

.powertel-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@media screen and (max-width: 992px) {
    .powertel-hero .hero-text h1 {
        font-size: 2.75rem;
    }
}

@media screen and (max-width: 768px) {
    .powertel-hero .hero-text h1 {
        font-size: 2.25rem;
    }
}

.powertel-hero .hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

@media screen and (max-width: 768px) {
    .powertel-hero .hero-subtitle {
        font-size: 1.15rem;
    }
}

.powertel-hero .hero-text p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 850px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .powertel-hero .hero-text p {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* New Company Overview Design */
.company-overview {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white-color) 50%, #f8f9fa 100%);
    position: relative;
}

.overview-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.overview-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.visual-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 6s ease-in-out infinite;
}

.visual-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}



.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.3) 0%, rgba(0, 102, 163, 0.2) 100%);
    z-index: 1;
}

.visual-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
    background: var(--white-color);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float 4s ease-in-out infinite 1s;
}

.visual-badge:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.badge-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.overview-content-section {
    padding-left: 2rem;
}

.content-header {
    margin-bottom: 2.5rem;
}

.content-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    overflow: hidden;
}

.header-accent {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 3px;
    margin-top: 1rem;
    animation: expandWidth 1s ease-out 0.8s forwards;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 80px;
        opacity: 1;
    }
}

.content-main {
    margin-bottom: 2.5rem;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.content-main p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-main p:nth-child(1) {
    animation-delay: 0.7s;
}

.content-main p:nth-child(2) {
    animation-delay: 0.9s;
}

.content-cta {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white-color);
    background: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.25);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
    letter-spacing: 0.3px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.35);
    background: #003d6b;
    border-color: #003d6b;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.25);
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.overview-mandate-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
    align-items: start;
    background: var(--white-color);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 78, 137, 0.1);
    border: 1px solid rgba(0, 78, 137, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.overview-mandate-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 78, 137, 0.03), transparent);
    transition: left 0.8s ease;
}

.overview-mandate-section:hover::before {
    left: 100%;
}

.overview-mandate-section:hover {
    box-shadow: 0 25px 70px rgba(0, 78, 137, 0.15);
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 78, 137, 0.2);
}

.mandate-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mandate-icon-box {
    width: 100px;
    height: 100px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 3px solid var(--primary-color);
}

.mandate-icon-box::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overview-mandate-section:hover .mandate-icon-box::before {
    opacity: 1;
}

.overview-mandate-section:hover .mandate-icon-box {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 78, 137, 0.25);
    border-color: var(--secondary-color);
}

.mandate-icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.overview-mandate-section:hover .mandate-icon-box i {
    color: var(--white-color);
    transform: scale(1.1);
}

.mandate-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.mandate-content p {
    color: #555;
    line-height: 1.9;
    font-size: 1.1rem;
    margin: 0;
}

/* Enhanced Power Stations / Services Section */
.power-stations {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--white-color) 0%, #f8f9fa 100%);
    position: relative;
}

.power-stations::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 78, 137, 0.2), transparent);
}

.power-stations h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
    .power-stations h2 {
        font-size: 2.5rem;
        padding-bottom: 1rem;
    }
}

.power-stations h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        line-height: 1.7;
    }
}

/* Enhanced Powertel Card Accordion Styles */
.powertel-cards {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.powertel-card {
    background: var(--white-color);
    border: 2px solid rgba(0, 78, 137, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    backdrop-filter: blur(10px);
}

.powertel-card:nth-child(1) {
    animation-delay: 0.1s;
}

.powertel-card:nth-child(2) {
    animation-delay: 0.2s;
}

.powertel-card:nth-child(3) {
    animation-delay: 0.3s;
}

.powertel-card:nth-child(4) {
    animation-delay: 0.4s;
}

.powertel-card:nth-child(5) {
    animation-delay: 0.5s;
}

.powertel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.powertel-card:hover {
    box-shadow: 0 8px 30px rgba(0, 78, 137, 0.15);
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(0, 78, 137, 0.2);
}

.powertel-card:hover::before {
    height: 100%;
}

.powertel-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 78, 137, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.powertel-card.active::before {
    height: 100%;
}

.powertel-card-header {
    padding: 1.5rem 2rem;
    background: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
    position: relative;
    z-index: 2;
}

.powertel-card-header:hover {
    background: rgba(0, 78, 137, 0.02);
}

.powertel-card.active .powertel-card-header {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    color: var(--white-color);
    border-bottom-color: rgba(255, 255, 255, 0.15);
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.2);
}

.powertel-card-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.powertel-card.active .powertel-card-title {
    color: var(--white-color);
}

.powertel-card-title i {
    font-size: 1.4rem;
    color: var(--primary-color);
    padding: 0.75rem;
    background: rgba(0, 78, 137, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.powertel-card.active .powertel-card-title i {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.powertel-card-icon {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 0.5rem;
    background: rgba(0, 78, 137, 0.05);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.powertel-card.active .powertel-card-icon {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg) scale(1.1);
}

.powertel-card-header:hover .powertel-card-icon {
    transform: scale(1.15);
}

.powertel-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s;
    opacity: 0;
}

.powertel-card-body.show {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.powertel-card-body p {
    padding: 0 2rem 2rem 2rem;
    color: #555;
    line-height: 1.9;
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 400;
}

.powertel-card-body p:first-child {
    margin-top: 0;
    padding-top: 1.5rem;
}

.powertel-list {
    list-style: none;
    padding: 0 2rem 2rem 2rem;
    margin: 0;
    margin-top: 1.5rem;
    padding-top: 0;
}

.powertel-list li {
    color: #555;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.85;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.powertel-list li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.powertel-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white-color);
    font-weight: bold;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--accent-color), #E55A5A);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.powertel-list li:hover::before {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

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

/* Generation Overview Section - Enhanced */
.generation-overview {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white-color) 0%, #f8f9fa 50%, var(--white-color) 100%);
    position: relative;
}

.generation-overview h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.generation-overview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

@media screen and (max-width: 768px) {
    .generation-overview h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
}

.generation-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-gray-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-item:hover {
    background: var(--white-color);
    box-shadow: var(--shadow);
    transform: translateX(5px);
    border-left-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 78, 137, 0.1);
    border-radius: 50%;
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(0, 78, 137, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    color: var(--white-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.btn-outline:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animated {
    transform: scale(1);
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* Staggered animations */
.overview-hero>* {
    animation-delay: 0.2s;
}

.overview-visual {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.overview-content-section {
    animation: fadeInRight 1s ease-out 0.5s both;
}

.visual-badge {
    animation: slideInDown 0.8s ease-out 0.8s both, pulse 2s ease-in-out 1.5s infinite;
}

.overview-mandate-section {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.mandate-icon-box {
    animation: scaleIn 0.8s ease-out 0.9s both;
}

.mandate-content {
    animation: fadeInRight 0.8s ease-out 1.1s both;
}

/* Enhanced Vision, Mission & Values Section */
.generation-overview {
    background: linear-gradient(to bottom, #f8f9fa 0%, var(--white-color) 100%);
}

.generation-overview h2 {
    position: relative;
    padding-bottom: 1rem;
}

.generation-overview h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.generation-overview .generation-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 0;
}

.generation-overview .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white-color);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 78, 137, 0.1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid rgba(0, 78, 137, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInUp 0.8s ease forwards;
}

.generation-overview .feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.generation-overview .feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.generation-overview .feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.generation-overview .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.05), rgba(0, 102, 163, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.generation-overview .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 78, 137, 0.2);
    border-color: var(--primary-color);
}

.generation-overview .feature-item:hover::before {
    opacity: 1;
}

.generation-overview .feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.generation-overview .feature-item:nth-child(1) i {
    animation: none;
}

.generation-overview .feature-item:nth-child(2) i {
    animation: none;
}

.generation-overview .feature-item:nth-child(3) i {
    animation: none;
}

.generation-overview .feature-item:hover i {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.2);
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}

.generation-overview .feature-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    position: relative;
    z-index: 1;
}

.generation-overview .feature-item p {
    color: #555;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.generation-overview .overview-image {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

@media screen and (max-width: 768px) {
    .generation-overview .overview-image {
        margin-top: 3rem;
    }
}

.generation-overview .overview-image::before {
    content: '';
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.generation-overview .overview-image img {
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.generation-overview .overview-image:hover img {
    /* transform: scale(1.02) translateY(-5px); */
    /* Zoom disabled */
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

/* Responsive Design */
@media screen and (max-width: 992px) {

    .overview-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .overview-image {
        order: -1;
    }

    .generation-overview .generation-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .generation-overview .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .generation-overview .feature-item i {
        margin-bottom: 0;
        margin-right: 1.5rem;
    }
}

@media screen and (max-width: 992px) {
    .powertel-hero .hero-text h1 {
        font-size: 3rem;
    }

    .powertel-hero .hero-subtitle {
        font-size: 1.3rem;
    }

    .generation-overview .generation-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Additional Visual Enhancements */
.powertel-hero .hero-background img {
    animation: subtleZoom 20s ease-in-out infinite;
}

@keyframes subtleZoom {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Improved focus states for accessibility */
.powertel-card-header:focus,
.gallery-nav-btn:focus,
.cta-button:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Better loading states - skeleton loader for images without src */
.gallery-item img:not([src]),
.gallery-item img[src=""] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media screen and (max-width: 768px) {
    .powertel-hero {
        min-height: 350px;
    }

    .powertel-hero .hero-content {
        padding: 2rem 1.5rem;
    }

    .powertel-hero .hero-text h1 {
        font-size: 2.25rem;
    }

    .powertel-hero .hero-subtitle {
        font-size: 1.15rem;
    }

    .powertel-hero .hero-text p {
        font-size: 1rem;
    }

    .power-stations,
    .company-overview,
    .generation-overview,
    .contact-cta {
        padding: 5rem 0;
    }

    .power-stations h2 {
        font-size: 2.5rem;
    }

    .power-stations h2::after {
        width: 60px;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .powertel-cards {
        gap: 1rem;
    }

    .powertel-card-header {
        padding: 1.25rem 1.5rem;
    }

    .powertel-card.active .powertel-card-header {
        padding: 1.5rem 1.5rem;
    }

    .powertel-card-title {
        font-size: 1rem;
        gap: 0.75rem;
    }

    .powertel-card-title i {
        font-size: 1.2rem;
        padding: 0.5rem;
    }

    .powertel-card-body p,
    .powertel-list {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .powertel-card-body p {
        padding-bottom: 1.5rem;
        font-size: 1rem;
    }

    .powertel-list {
        padding-bottom: 1.5rem;
    }

    .powertel-list li {
        padding-left: 2rem;
        font-size: 0.95rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .powertel-list li::before {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .generation-overview .feature-item {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .generation-overview .feature-item i {
        font-size: 1.75rem;
        width: 70px;
        height: 70px;
        padding: 0;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .generation-overview .feature-item h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .generation-overview .feature-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .overview-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4rem;
    }

    .overview-visual {
        min-height: 400px;
        order: -1;
    }

    .visual-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 1.25rem 1.5rem;
        min-width: 100px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .overview-content-section {
        padding-left: 0;
    }

    .content-header h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .lead-paragraph {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .content-main p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .powertel-cards {
        gap: 1.25rem;
    }

    .overview-mandate-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .mandate-visual {
        justify-content: flex-start;
    }

    .mandate-icon-box {
        width: 90px;
        height: 90px;
    }

    .mandate-icon-box i {
        font-size: 2.25rem;
    }

    .mandate-content h3 {
        font-size: 1.75rem;
    }

    .mandate-content p {
        font-size: 1rem;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

/* Enhanced Gallery Section for Powertel */
.department-gallery {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white-color) 0%, #f8f9fa 100%);
    position: relative;
}

.department-gallery .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.department-gallery .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary-color), #0066A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1.5rem;
}

.department-gallery .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.department-gallery .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-container {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-viewport {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
}

.gallery-item {
    flex: 0 0 33.333%;
    min-width: 33.333%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.gallery-item:first-child {
    padding-left: 0;
}

.gallery-item:last-child {
    padding-right: 0;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}



.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem;
    color: var(--white-color);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white-color);
    border: 2px solid rgba(0, 78, 137, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gallery-nav-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 78, 137, 0.3);
}

.gallery-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 78, 137, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot:hover {
    background: rgba(0, 78, 137, 0.4);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

@media screen and (max-width: 992px) {
    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .gallery-item {
        flex: 0 0 50%;
        min-width: 50%;
    }

    .gallery-item img {
        height: 350px;
    }
}

@media screen and (max-width: 768px) {
    .department-gallery {
        padding: 4rem 0;
    }

    .department-gallery .section-header h2 {
        font-size: 2.25rem;
    }

    .department-gallery .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0;
    }

    .gallery-item img {
        height: 300px;
    }

    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 5px;
    }

    .gallery-next {
        right: 5px;
    }
}