/* ========================================
   MAND EMPIRES - Additional Custom Styles
   ======================================== */

/* ========================================
/* Theme Toggle Removed */

/* ========================================
   Light Mode Specific Overrides
   ======================================== */

/* Header & Navigation */
.animated-bg::before {
    background: radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(196, 30, 58, 0.05) 0%, transparent 40%);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation Text - Force White for Dark Header */
.site-header .main-navigation a,
.site-header .menu-toggle span,
.site-header .header-actions .cta-button {
    color: #ffffff !important;
}

/* Header Phone - White text on dark header */
.site-header .header-phone,
.site-header .header-phone span {
    color: #ffffff !important;
}

.site-header .header-phone svg {
    color: var(--color-primary) !important;
}

.site-header .header-phone:hover {
    color: var(--color-primary) !important;
}

.site-header .menu-toggle span {
    background: #ffffff !important;
}

.mobile-nav {
    background: rgba(255, 255, 255, 0.98);
}

.sub-menu {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Sub-menu text should be dark on light background */
.sub-menu a {
    color: var(--text-primary) !important;
}

.sub-menu a:hover {
    color: var(--color-primary) !important;
}

.menu-toggle span {
    background: #ffffff;
}

/* Footer - Keep dark in light mode for contrast */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
}

.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer .contact-icon {
    color: rgba(255, 255, 255, 0.9);
}

.site-footer .social-link {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
/* Hero & Page Header overrides removed (using generated assets at end of file) */

/* Cards - Services, Features, Values */
.service-card,
.feature-card,
.value-card,
.blog-card,
.project-card,
.process-card,
.expertise-card,
.case-study-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card:hover,
.feature-card:hover,
.value-card:hover,
.blog-card:hover {
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.3);
}

/* Section backgrounds */
/* Section backgrounds - Transparent Glass */
.services-section,
.values-section,
.blog-section,
.process-section,
.projects-section,
.timeline-section,
.features-section,
.partners-section,
.expertise-section,
.gallery-section {
    background: var(--bg-section);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(135deg, rgba(240, 242, 245, 0.9) 0%, rgba(226, 230, 234, 0.9) 100%), url('../images/bg-city.png');
    background-size: cover;
    background-position: center;
}

.cta-box {
    background: var(--gradient-gold) !important;
    border: none;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.cta-box h2 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Contact Page */
.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-primary);
    background: #ffffff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

/* FAQ Page */
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
}

.faq-item:hover {
    border-color: rgba(196, 30, 58, 0.3);
}

.faq-question {
    color: var(--text-primary);
}

.faq-answer {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Gallery Page */
.gallery-filter button {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.gallery-filter button:hover,
.gallery-filter button.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

.gallery-item {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

/* Video Page */
.video-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
}

.video-card:hover {
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.15);
}

/* Blog Page */
.blog-post-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.newsletter-section {
    background: #f0f2f5;
}

.newsletter-form input {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

/* About Page */
.team-member {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mission-card,
.vision-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.ceo-message {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

/* Services Pages */
.service-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline-item::before {
    background: #e9ecef;
}

.timeline-dot {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.2);
}

/* Buttons in light mode */
.btn-outline {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}

/* Text highlights */
.gold-text {
    color: #9E1830 !important;
}

/* Partner logos */
.partner-logo {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Stats */
.stat-item {
    background: rgba(196, 30, 58, 0.05);
    border-radius: 8px;
    padding: 20px;
}

/* Icons with dark background */
.service-icon,
.feature-icon,
.value-icon {
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    fill: #ffffff;
}

/* Header phone number responsive */
@media (max-width: 1024px) {
    .header-phone .phone-text {
        display: none;
    }
}

/* Scroll progress bar */
.scroll-progress {
    background: linear-gradient(90deg, #9E1830, #C41E3A);
}

/* Comments section */
.comment {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.comment-form input,
.comment-form textarea {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

/* Widgets */
.widget {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

/* Pagination */
.pagination .page-numbers {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

/* Search form */
.search-form .search-field {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-primary);
}

/* 404 page */
.error-404 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Mobile navigation in light mode */
.mobile-navigation>li {
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.mobile-sub-menu li a {
    border-left-color: rgba(196, 30, 58, 0.3);
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-dark);
    overflow: hidden;
    pointer-events: none;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(196, 30, 58, 0.03) 0%, transparent 40%);
    animation: rotateGlow 60s linear infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Float animation for particles */
@keyframes float {

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

    25% {
        transform: translateY(-20px) translateX(10px);
    }

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

    75% {
        transform: translateY(-30px) translateX(5px);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #C41E3A, #E63950);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Page content spacing for header */
.page-content,
.single-content,
.archive-content {
    padding-top: 120px;
    min-height: 60vh;
}

/* Blog single post styles */
.blog-single .entry-header {
    margin-bottom: 40px;
}

.blog-single .entry-title {
    color: var(--color-primary);
    margin-bottom: 20px;
}

.blog-single .featured-image {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.blog-single .featured-image img {
    width: 100%;
    height: auto;
}

.blog-single .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-single .entry-content p {
    margin-bottom: 1.5rem;
}

.blog-single .entry-content h2,
.blog-single .entry-content h3,
.blog-single .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.blog-single .entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.blog-single .post-categories,
.blog-single .post-tags {
    margin-bottom: 15px;
}

.blog-single .post-categories a,
.blog-single .post-tags a {
    color: var(--color-primary);
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 600;
}

/* Comments */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
    color: var(--color-primary);
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    padding: 20px;
    margin-bottom: 20px;
    background: var(--bg-glass);
    border: var(--border-light);
    border-radius: 8px;
}

.comment-author {
    font-weight: 600;
    color: var(--color-primary);
}

.comment-metadata {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.comment-content {
    margin-top: 10px;
}

.comment-reply-link {
    color: var(--color-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Comment Form */
.comment-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: var(--border-light);
    border-radius: 4px;
    color: var(--text-primary);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.comment-form .submit {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.comment-form .submit:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--bg-glass);
    border: var(--border-light);
    border-radius: 4px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 100px 20px;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404 h2 {
    margin-bottom: 30px;
}

.error-404 p {
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form .search-field {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-glass);
    border: var(--border-light);
    border-radius: 4px;
    color: var(--text-primary);
}

.search-form .search-field:focus {
    outline: none;
    border-color: var(--color-primary);
}

.search-form .search-submit {
    background: var(--gradient-gold);
    color: #000;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
}

/* Widget Styles */
.widget {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--bg-glass);
    border: var(--border-light);
    border-radius: 8px;
}

.widget-title {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget ul li {
    margin-bottom: 10px;
}

.widget ul li a {
    color: var(--text-secondary);
}

.widget ul li a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

/* Archive Page */
.archive-header {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-section);
    margin-bottom: 60px;
}

.archive-title {
    color: var(--color-primary);
}

.archive-description {
    max-width: 600px;
    margin: 20px auto 0;
}

/* Elementor specific fixes */
.elementor-page .site-main {
    padding: 0;
}

.elementor-page .site-header {
    position: fixed;
}

.elementor-section-wrap {
    padding-top: 80px;
}

/* Elementor dark sections */
.elementor-section {
    background: transparent;
}

.elementor-section.e-con {
    background: transparent;
}

/* Custom Elementor buttons */
.elementor-button-wrapper .elementor-button {
    background: var(--gradient-gold) !important;
    color: #000 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: var(--transition-fast) !important;
}

.elementor-button-wrapper .elementor-button:hover {
    box-shadow: var(--shadow-gold) !important;
    transform: translateY(-2px) !important;
}

/* Elementor headings */
.elementor-heading-title {
    color: var(--text-primary) !important;
}

.elementor-widget-heading .elementor-heading-title.gold-text,
.elementor-widget-heading.gold-text .elementor-heading-title {
    color: var(--color-primary) !important;
}

/* Scroll animation states */
.animate-on-scroll,
.service-card,
.feature-card,
.value-card,
.blog-card,
.partner-logo {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible,
.service-card.visible,
.feature-card.visible,
.value-card.visible,
.blog-card.visible,
.partner-logo.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.service-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.service-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.service-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.feature-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4).visible {
    transition-delay: 0.4s;
}

.value-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.value-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.value-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.value-card:nth-child(4).visible {
    transition-delay: 0.4s;
}

.value-card:nth-child(5).visible {
    transition-delay: 0.5s;
}

.value-card:nth-child(6).visible {
    transition-delay: 0.6s;
}

.blog-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.blog-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.blog-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.blog-card:nth-child(4).visible {
    transition-delay: 0.4s;
}

.blog-card:nth-child(5).visible {
    transition-delay: 0.5s;
}

.blog-card:nth-child(6).visible {
    transition-delay: 0.6s;
}

/* ========================================
   Dropdown Menu Styles
   ======================================== */

/* Desktop Dropdown Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation>li {
    position: relative;
}

.main-navigation>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.main-navigation>li>a:hover,
.main-navigation>li.current-menu-item>a {
    color: var(--color-primary);
    background: rgba(196, 30, 58, 0.1);
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Submenu Dropdown */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(17, 17, 17, 0.98);
    border: var(--border-light);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    z-index: 1000;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.sub-menu li a:hover {
    color: var(--color-primary);
    background: rgba(196, 30, 58, 0.1);
    padding-left: 25px;
}

/* ========================================
   Mobile Navigation Styles
   ======================================== */

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 30px 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-navigation {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
}

.mobile-navigation>li>a:hover {
    color: var(--color-primary);
}

.mobile-dropdown-toggle span {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.mobile-menu-item-has-children.open .mobile-dropdown-toggle span {
    transform: rotate(45deg);
}

.mobile-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 15px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu-item-has-children.open .mobile-sub-menu {
    max-height: 300px;
}

.mobile-sub-menu li a {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    border-left: 2px solid rgba(196, 30, 58, 0.3);
    padding-left: 15px;
    margin-left: 5px;
}

.mobile-sub-menu li a:hover {
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.mobile-nav-cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ========================================
   Header CTA Button
   ======================================== */

.header-cta {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
}

.header-cta span {
    font-size: 1.1rem;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none !important;
    }

    .header-inner {
        justify-content: space-between;
    }

    .mobile-theme-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .mobile-nav {
        top: 70px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-navigation>li>a {
        font-size: 1rem;
        padding: 15px 0;
    }
}

/* ========================================
   Section Backgrounds (Generated Assets)
   ======================================== */


/* Services Section - Increased overlay for readability */
.services-section {
    background: linear-gradient(rgba(240, 242, 245, 0.92), rgba(245, 246, 248, 0.95)), url('../images/bg-services.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* About Section */
.about-section {
    background: linear-gradient(rgba(240, 242, 245, 0.92), rgba(245, 246, 248, 0.95)), url('../images/bg-about.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Videos Section */
.videos-section {
    background: linear-gradient(rgba(240, 242, 245, 0.92), rgba(245, 246, 248, 0.95)), url('../images/bg-videos.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero & Page Header Backgrounds - Darker overlay for white text */
.hero-section:not(.hero-fullwidth) {
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(26, 26, 46, 0.9)), url('../images/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ffffff;
}

.hero-section h1,
.hero-section p {
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ===== ENHANCED PAGE HEADER STYLES ===== */
.page-header {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(45, 45, 68, 0.88) 100%), url('../images/bg-header.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: #ffffff !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-header h1.gold-text {
    background: linear-gradient(135deg, #C41E3A, #E63950, #C41E3A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 16px;
}

.page-header .breadcrumb a {
    color: var(--color-primary);
}

/* Features Section - Increased overlay */
.features-section {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95)), url('../images/bg-features.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Values Section - Increased overlay */
.values-section {
    background: linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.93)), url('../images/bg-values.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Gallery Section - Increased overlay */
.gallery-section {
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95)), url('../images/bg-gallery.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Partners Section */
.partners-section {
    background: linear-gradient(rgba(248, 249, 250, 0.97), rgba(255, 255, 255, 0.98));
}

/* Blog Section */
.blog-section {
    background: linear-gradient(rgba(240, 242, 245, 0.95), rgba(248, 249, 250, 0.97));
}

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.97));
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(rgba(240, 242, 245, 0.95), rgba(248, 249, 250, 0.97));
}

/* Text visibility enhancements - Light background sections */
.services-section h2,
.services-section h3,
.services-section h4,
.values-section h2,
.values-section h3,
.values-section h4,
.features-section h2,
.features-section h3,
.features-section h4,
.testimonials-section h2,
.why-choose-section h2,
.blog-section h2,
.partners-section h2 {
    color: var(--text-primary);
}

.services-section p,
.values-section p,
.features-section p,
.testimonials-section p,
.why-choose-section p,
.blog-section p,
.partners-section p {
    color: var(--text-secondary);
}

/* Text visibility - Dark background sections (Hero, CTA, Stats) */
.hero-section h1,
.hero-section h2,
.hero-section p,
.cta-section h2,
.cta-section p,
.cta-section.cta-enhanced h2,
.cta-section.cta-enhanced p,
.stats-section h2,
.stats-section p {
    color: #ffffff;
}

.hero-section .hero-badge {
    color: var(--color-primary);
}

.hero-section h1 span {
    color: var(--color-primary);
}

/* CTA Section text on dark background */
.cta-enhanced h2 {
    color: #ffffff !important;
}

.cta-enhanced p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Card text visibility */
.service-card h3,
.service-card h4,
.feature-card h3,
.value-card h3,
.why-choose-card h4,
.testimonial-card h5 {
    color: var(--text-primary);
}

.service-card p,
.feature-card p,
.value-card p,
.why-choose-card p,
.testimonial-card p {
    color: var(--text-secondary);
}

/* Gold text class should use primary red */
.gold-text {
    color: var(--color-primary) !important;
}

/* Blog card text */
.blog-card h4 {
    color: var(--text-primary);
}

.blog-card p,
.blog-card .blog-date {
    color: var(--text-secondary);
}

/* Section header text */
.section-header h2 {
    color: var(--text-primary);
}

.section-header p {
    color: var(--text-secondary);
}

.section-tag {
    color: var(--color-primary);
}

/* Responsive page header */
@media (max-width: 768px) {
    .page-header {
        padding: 140px 20px 80px;
    }

    .page-header h1 {
        font-size: clamp(2rem, 7vw, 2.5rem);
    }

    .page-header p {
        font-size: 1rem;
    }
}

/* ========================================
   METHODOLOGY PAGE STYLES
   ======================================== */

:root {
    --color-primary: #C41E3A;
    --color-primary-dark: #A01830;
    --text-primary: #2C3E50;
    --text-secondary: #596275;
    --bg-section: #F8F9FA;
    --gradient-gold: linear-gradient(135deg, #DFBD69 0%, #926F34 100%);
}

/* Stats Section */
.methodology-stats-section {
    padding: 80px 0;
    background: var(--bg-section);
    position: relative;
}

.stats-grid-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 30, 58, 0.08);
    /* Primary Red tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-primary);
}

.stat-icon svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Highlight Items */
.experience-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.highlight-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-icon {
    font-size: 1.2rem;
}

.highlight-item p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.stats-bottom-text {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
}

/* Founder Section */
.methodology-founder-section {
    padding: 100px 0;
    background: #fff;
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
}

.founder-image {
    flex-shrink: 0;
}

.founder-avatar {
    width: 250px;
    height: 250px;
    background: var(--bg-section);
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-avatar svg {
    width: 100px;
    height: 100px;
    fill: #ddd;
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.founder-badge {
    background: var(--gradient-gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.founder-signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-line {
    width: 50px;
    height: 2px;
    background: var(--color-primary);
}

.signature-text {
    font-family: 'Cursive', serif;
    /* Enhance with a real font if avail */
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Team Section */
.methodology-team-section {
    padding: 100px 0;
    background: var(--bg-section);
}

.team-grid-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.team-member-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    line-height: 1;
}

.team-member-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-section);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.team-member-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* Videos Section */
.methodology-videos-section {
    padding: 100px 0;
    background: #fff;
}

.methodology-item {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 100px;
}

.methodology-item:last-child {
    margin-bottom: 0;
}

.methodology-item.reverse {
    flex-direction: row-reverse;
}

.methodology-video {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.video-play-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-play-button:hover {
    transform: scale(1.1);
}

.video-play-button svg {
    fill: #fff;
    width: 24px;
    height: 24px;
    margin-left: 4px;
}

.methodology-content {
    flex: 1;
    padding-top: 20px;
}

.methodology-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.methodology-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.methodology-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(196, 30, 58, 0.05);
    line-height: 1;
    margin-bottom: -20px;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder-avatar {
        margin: 0 auto;
    }

    .founder-signature {
        justify-content: center;
    }

    .methodology-item,
    .methodology-item.reverse {
        flex-direction: column;
    }

    .stats-grid-methodology {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid-methodology {
        grid-template-columns: 1fr;
    }

    .methodology-content h3 {
        font-size: 1.5rem;
    }
}


/* ========================================
   METHODOLOGY PAGE STYLES
   ======================================== */

/* Stats Section */
.methodology-stats-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.stats-grid-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Founder Section */
.methodology-founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(158, 24, 48, 0.05) 0%, rgba(196, 30, 58, 0.08) 100%);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

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

.founder-image {
    flex-shrink: 0;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(196, 30, 58, 0.3);
}

.founder-avatar svg {
    width: 80px;
    height: 80px;
    fill: #ffffff;
}

.founder-content {
    flex: 1;
}

.founder-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.signature-line {
    width: 50px;
    height: 2px;
    background: var(--color-primary);
}

.signature-text {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-primary);
}

/* Team Section */
.methodology-team-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.team-grid-methodology {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.team-member-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.team-member-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.12);
    border-color: rgba(196, 30, 58, 0.3);
}

.team-member-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    color: rgba(196, 30, 58, 0.1);
}

.team-member-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.team-member-info h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.team-member-info p {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Videos/Methodology Section */
.methodology-videos-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-section) 100%);
}

.methodology-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.methodology-item.reverse {
    flex-direction: row-reverse;
}

.methodology-item:last-child {
    margin-bottom: 0;
}

.methodology-video {
    flex: 0 0 45%;
    position: sticky;
    top: 120px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(196, 30, 58, 0.2) 0%, transparent 70%);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    z-index: 1;
}

.video-play-button svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
    margin-left: 4px;
}

.video-play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
}

.video-coming-soon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1;
}

/* Video Wrapper for YouTube Embeds */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* HTML5 Video Styles - Supports both portrait and landscape */
.video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 500px;
    border-radius: 16px;
    object-fit: contain;
    background: #1a1a1a;
    display: block;
}

/* Adjust video wrapper for self-hosted videos */
.video-wrapper:has(video) {
    padding-bottom: 0;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 16px;
    min-height: 280px;
}

/* Video Placeholder with Poster Image */
.video-placeholder-upload {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
}

.video-placeholder-upload img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: background 0.3s ease;
}

.video-placeholder-upload:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.video-play-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    transition: transform 0.3s ease;
}

.video-placeholder-upload:hover .video-play-icon {
    transform: scale(1.1);
}

.video-upload-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Portrait video specific styles */
.video-wrapper.portrait-video {
    max-width: 350px;
    margin: 0 auto;
}

.video-wrapper.portrait-video video {
    max-height: 600px;
}

.methodology-content {
    flex: 1;
    position: relative;
}

.methodology-number {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(196, 30, 58, 0.08);
    line-height: 1;
}

.methodology-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.methodology-content h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.methodology-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.methodology-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.methodology-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .founder-card::before {
        width: 100%;
        height: 6px;
        top: 0;
        left: 0;
    }

    .founder-signature {
        justify-content: center;
    }

    .methodology-item,
    .methodology-item.reverse {
        flex-direction: column;
    }

    .methodology-video {
        flex: none;
        width: 100%;
        position: relative;
        top: 0;
    }

    .methodology-number {
        font-size: 4rem;
        top: -10px;
    }
}

@media (max-width: 768px) {
    .stats-grid-methodology {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .founder-avatar {
        width: 150px;
        height: 150px;
    }

    .founder-avatar svg {
        width: 60px;
        height: 60px;
    }

    .founder-content h2 {
        font-size: 1.8rem;
    }

    .team-grid-methodology {
        grid-template-columns: 1fr;
    }

    .methodology-content h3 {
        font-size: 1.5rem;
    }

    .methodology-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .stats-grid-methodology {
        grid-template-columns: 1fr;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .team-member-card {
        padding: 20px;
    }

    .team-member-avatar {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* ========================================
   METHODOLOGY PAGE ENHANCEMENTS
   ======================================== */

/* Page Header with Background Enhancement */
.methodology-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.methodology-header .hero-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.methodology-header h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.methodology-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Stats Section Enhancements */
.stats-intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Experience Highlights */
.experience-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-primary);
    max-width: 350px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stat Card Description */
.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.8;
}

/* Stats Bottom Text */
.stats-bottom-text {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: center;
    padding: 30px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(196, 30, 58, 0.1);
}

.stats-bottom-text p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Founder Section with Background */
.methodology-founder-section {
    position: relative;
    background: linear-gradient(135deg, rgba(158, 24, 48, 0.05) 0%, rgba(196, 30, 58, 0.08) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

.methodology-founder-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
}

.methodology-founder-section .container {
    position: relative;
    z-index: 1;
}

/* Team Section with Background */
.methodology-team-section {
    position: relative;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}

/* Videos Section with Background */
.methodology-videos-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, rgba(248, 249, 250, 0.95) 50%, #ffffff 100%),
        url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

/* Responsive Adjustments for New Elements */
@media (max-width: 1024px) {
    .experience-highlights {
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .methodology-header {
        min-height: 350px;
    }

    .methodology-header .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .methodology-header p {
        font-size: 1rem;
    }

    .stats-intro-text {
        font-size: 1rem;
    }

    .highlight-item {
        padding: 15px 20px;
    }

    .highlight-icon {
        font-size: 1.5rem;
    }

    .stats-bottom-text {
        padding: 20px;
    }

    .stats-bottom-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .methodology-header {
        min-height: 300px;
    }

    .experience-highlights {
        gap: 20px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}

/* ========================================
   HERO BACKGROUND IMAGE SLIDER
   ======================================== */

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* Background Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slides */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark Overlay on Slides */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: #ffffff;
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

/* Hero Content Styling for Slider */
.hero-slider-section .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-slider-section .hero-badge {
    background: var(--gradient-gold);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-slider-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-slider-section h1 span {
    color: var(--color-primary);
}

.hero-slider-section .hero-content>p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-slider-section .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-slider-section .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-slider-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Responsive Hero Slider */
@media (max-width: 768px) {
    .hero-slider-section {
        min-height: 600px;
    }

    .slider-dots {
        bottom: 80px;
    }

    .hero-slider-section .hero-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .hero-slider-section .hero-content>p {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        min-height: 550px;
    }

    .hero-slider-section .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .hero-slider-section .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .slider-dots {
        bottom: 60px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}