/*
Theme Name: Nu Global
Description: A modern, responsive WordPress theme for Nu Global - Smart Contact Center Solutions. Fully compatible with Elementor page builder.
Author: Nu Global
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nu-global
Tags: elementor, contact-center, business, responsive, modern
*/

:root {
    --primary: #1ca15e; /* Nu Global Green */
    --secondary: #ff6b00; /* Nu Global Orange */
    --accent: #ff6b00; /* Orange as accent */
    --light: #fff;
    --dark: #222;
    --gray: #6c757d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
}

p {
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,107,0,0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(28,161,94,0.2);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 25px 0;
    background: #fff !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

header.scrolled {
    background-color: rgba(255,255,255,0.95);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

header.scrolled .logo,
header.scrolled nav ul li a {
    color: var(--primary);
}

/* HEADER SCROLLED WHITE BACKGROUND, ORANGE TEXT */
header.scrolled {
    background-color: #fff !important;
}
header.scrolled nav ul li a {
    color: var(--accent) !important;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent);
}



nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
}

.mobile-menu:hover {
    background-color: rgba(28, 161, 94, 0.1);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: unset;
    height: unset;
    display: flex;
    align-items: flex-start;
    background: none;
    overflow: hidden;
    padding-top: 9rem;
    padding-bottom: 5rem;
}
.hero-inner {
    padding-top: 0;
    padding-bottom: 0;
}
@media (max-width: 600px) {
    .hero {
        padding-top: 7rem;
        padding-bottom: 4.5rem;
    }
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85) !important;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 450px;
}

.hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.3;
}

.hero p {
    font-size: 16px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

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

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent);
}

.stat-card h3 {
    font-size: 50px;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}

/* About Summary Section */
.about-summary {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.about-summary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, #ff8c1a 100%);
}

.about-summary p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: center;
}

/* About Details Section (replacing leadership) */
.about-details {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.03;
    z-index: -1;
}

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

.about-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(238, 124, 27, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

.about-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff8c1a 100%);
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
    position: relative;
}

.about-card h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.about-highlights {
    margin-top: 60px;
    background: white;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.highlight {
    width: 100%;
}

.about-highlights:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, #ff8c1a 100%);
}

.about-highlights h4 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 700;
    text-align: center;
    position: relative;
}

.about-highlights h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.about-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.about-highlights ul li {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
    padding-left: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(238, 124, 27, 0.1);
}

.about-highlights ul li:hover {
    background: #fff0e6;
    transform: translateX(5px);
    border-color: var(--accent);
}

.about-highlights ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 16px;
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(238, 124, 27, 0.2);
}

/* Leadership Section (keeping for other pages) */
.leadership {
    position: relative;
    overflow: hidden;
}

.leadership:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.05;
    z-index: -1;
}

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

.leader-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.leader-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.leader-img:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,34,64,0.8) 0%, transparent 50%);
}

.leader-info {
    padding: 25px;
    position: relative;
}

.leader-social {
    position: absolute;
    top: -20px;
    right: 25px;
    display: flex;
    gap: 10px;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.leader-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.leader-info p.position {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.leader-info p.bio {
    font-size: 14px;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Proposal Section */
.proposal {
    background-color: var(--primary);
    color: #fff;
}

.proposal .section-header h2,
.proposal .section-header p {
    color: #fff;
}

.proposal .section-header h2:after {
    background-color: var(--accent);
}

.proposal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.proposal-col-left, .proposal-col-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.proposal-text h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.proposal-text ul {
    list-style: none;
    margin-top: 20px;
}

.proposal-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.proposal-text ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.solution-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.solution-item {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
}

.solution-item:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    transition: all 0.4s ease;
}

.solution-item:hover .solution-icon {
    background-color: var(--accent);
    transform: rotateY(180deg);
}

.solution-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.solution-item p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* How We Deliver Section */
.deliver {
    background-color: var(--light);
}

.deliver-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.deliver-point {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.deliver-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.deliver-point:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--secondary);
}

.deliver-point i {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.deliver-point:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

.deliver-point h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Benefits Section */
.benefits {
    position: relative;
    overflow: hidden;
}

.benefits:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.05;
    z-index: -1;
}

.benefits-container {
    background-color: white;
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.benefits-container:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent);
}

.benefits-list {
    columns: 2;
    column-gap: 50px;
    margin-top: 30px;
}

.benefit-item {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    break-inside: avoid;
}

.benefit-item:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* CTA Section */
.cta {
    background-color: #000;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 42px;
}

.cta p {
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}

/* CTA Button Styles */
.cta .btn {
    background-color: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    font-weight: 700;
    padding: 15px 35px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.cta .btn:hover {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    font-weight: 800;
}

/* Footer */
footer {
    background-color: var(--primary) !important;
    color: #fff !important;
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about .logo {
    font-size: 28px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links ul li a:hover:before {
    color: var(--accent);
}

.contact-info {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 18px;
    margin-top: 3px;
}

.contact-info div {
    color: rgba(255,255,255,0.7);
}

.contact-info div a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info div a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.copyright p {
    margin: 0.5rem 0;
}

.copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 50px;
    }
    
    .deliver-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .proposal-content {
        grid-template-columns: 1fr;
    }
    
    .solution-icons {
        margin-top: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    
    nav ul {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        z-index: 999;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-bottom: 3px solid var(--accent);
    }
    
    nav ul.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul li {
        margin: 0 0 20px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    nav ul.show li {
        opacity: 1;
        transform: translateY(0);
    }
    
    nav ul li:nth-child(1) { transition-delay: 0.1s; }
    nav ul li:nth-child(2) { transition-delay: 0.2s; }
    nav ul li:nth-child(3) { transition-delay: 0.3s; }
    nav ul li:nth-child(4) { transition-delay: 0.4s; }
    nav ul li:nth-child(5) { transition-delay: 0.5s; }
    
    nav ul li a {
        color: var(--primary);
        font-size: 18px;
        font-weight: 600;
        padding: 15px 20px;
        display: block;
        width: 100%;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    nav ul li a:before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    nav ul li a:hover:before {
        left: 100%;
    }
    
    nav ul li a:hover {
        background-color: rgba(28, 161, 94, 0.1);
        color: var(--accent);
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(28, 161, 94, 0.2);
    }
    
    .mobile-menu {
        display: block;
        font-size: 22px;
        color: var(--primary);
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu:hover {
        background-color: rgba(28, 161, 94, 0.1);
        transform: scale(1.05);
        color: var(--accent);
    }
    
    /* Mobile Hero Section */
    .hero {
        min-height: 600px;
        padding-top: 10rem;
        padding-bottom: 4rem;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: rgba(255,255,255,0.9);
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-top: 20px;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 30px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Section Headers */
    .section-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Mobile Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-card h3 {
        font-size: 36px;
    }
    
    .stat-card p {
        font-size: 14px;
    }
    
    /* Mobile Proposal Section */
    .proposal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .proposal-text h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .proposal-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .proposal-text ul li {
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 20px;
    }
    
    /* Mobile Solution Icons */
    .solution-icons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-item {
        padding: 20px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .solution-item h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .solution-item p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Mobile Deliver Points */
    .deliver-points {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .deliver-point {
        padding: 25px 20px;
    }
    
    .deliver-point i {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .deliver-point h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .deliver-point p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Mobile Benefits Section */
    .benefits-feature-list {
        gap: 20px;
    }
    
    .benefit-feature-row {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .benefit-feature-content h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .benefit-feature-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Mobile About Details */
    .about-summary {
        padding: 25px 20px;
        margin: 30px 0;
    }
    
    .about-summary p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .about-card {
        padding: 25px 20px;
    }
    
    .about-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .about-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-highlights {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .about-highlights h4 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .about-highlights ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-highlights ul li {
        padding: 12px 15px;
        padding-left: 45px;
        font-size: 14px;
    }
    
    .about-highlights ul li:before {
        left: 15px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    /* Mobile CTA Section */
    .cta h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .cta .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-about .logo {
        font-size: 24px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .contact-info {
        margin-bottom: 15px;
    }
    
    .contact-info i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .contact-info div {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile Devices */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 3rem;
        padding-bottom: 3rem;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .hero p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .hero-btns .btn {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-card h3 {
        font-size: 28px;
    }
    
    .stat-card p {
        font-size: 12px;
    }
    
    /* Proposal Section */
    .proposal-text h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .proposal-text p {
        font-size: 13px;
    }
    
    .proposal-text ul li {
        font-size: 13px;
        padding-left: 18px;
    }
    
    /* Solution Icons */
    .solution-item {
        padding: 15px;
    }
    
    .solution-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .solution-item h4 {
        font-size: 14px;
    }
    
    .solution-item p {
        font-size: 12px;
    }
    
    /* Deliver Points */
    .deliver-point {
        padding: 20px 15px;
    }
    
    .deliver-point i {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .deliver-point h3 {
        font-size: 16px;
    }
    
    .deliver-point p {
        font-size: 13px;
    }
    
    /* Benefits Section */
    .benefit-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .benefit-feature-content h4 {
        font-size: 14px;
    }
    
    .benefit-feature-content p {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .cta p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .cta .btn {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    /* Footer */
    .footer-about .logo {
        font-size: 20px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 16px;
    }
    
    .footer-links ul li a {
        font-size: 13px;
    }
    
    .contact-info div {
        font-size: 13px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    /* Leaders Grid */
    .leaders-grid {
        grid-template-columns: 1fr;
    }
    
    /* Solution Icons */
    .solution-icons {
        grid-template-columns: 1fr;
    }
    
    /* About Details Mobile */
    .about-summary {
        padding: 20px 15px;
        margin: 25px 0;
    }
    
    .about-summary p {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .about-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .about-card p {
        font-size: 14px;
    }
    
    .about-highlights {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .about-highlights h4 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .about-highlights ul {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-highlights ul li {
        padding: 12px 15px;
        padding-left: 45px;
        font-size: 14px;
    }
    
    .about-highlights ul li:before {
        left: 15px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
} 

/* FORCE TEXT COLOR OVERRIDES */

/* Black text on light backgrounds */
body, section, .about, .deliver, .benefits, .stats-grid, .leaders-grid, .stat-card, .leader-card, .section-header, .section-header h2, .section-header p, .stat-card h3, .stat-card p, .leader-info h3, .leader-info p, .proposal-text h3, .proposal-text p, .solution-item h4, .solution-item p, .deliver-point h3, .deliver-point p, .benefits-container h2, .benefits-list, .benefit-item, .footer-links ul li a, .contact-info div, .footer-about p, .footer-contact, .footer-links h3, .footer-contact h3, nav ul li a, .logo, .hero-logo {
    color: #111 !important;
}

.logo span, .hero-logo span {
    color: var(--accent) !important;
}

.btn, .btn-secondary {
    color: #fff !important;
}

/* White text on dark backgrounds */
.hero *, .proposal, .proposal *, .cta, .cta *, footer, footer * {
    color: #fff !important;
}

/* Orange accents only for highlights, icons, lines, etc. */
.section-header h2:after,
.stat-card:before,
.benefits-container:before,
.footer-links h3:after,
.footer-contact h3:after,
.benefit-item:before,
.solution-icon,
.leader-social a,
.contact-info i {
    background-color: var(--accent) !important;
    color: #fff !important;
}

.solution-item:hover .solution-icon, .leader-social a:hover {
    background-color: #ff8c1a !important;
} 

/* FORCE WHITE TEXT IN HERO AND PROPOSAL (without affecting backgrounds) */
.hero, .hero *, .proposal, .proposal * {
    color: #fff !important;
} 

/* FORCE WHITE TEXT IN PROPOSAL SECTION AND CARDS */
.proposal, .proposal *,
.proposal-content, .proposal-content *,
.proposal-text, .proposal-text *,
.solution-icons, .solution-icons *,
.solution-item, .solution-item *,
.section-header, .section-header *,
#proposal h2, #proposal h3, #proposal h4, #proposal h5, #proposal h6, #proposal p, #proposal ul, #proposal li {
    color: #fff !important;
} 

/* FORCE WHITE MENU LINKS IN HERO SECTION */
header nav ul li a {
    color: #fff !important;
}
header.scrolled nav ul li a {
    color: var(--primary) !important;
} 

/* HERO TWO-COLUMN LAYOUT */
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}
.hero-logo-col {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.hero-logo-img {
    max-width: 55%;
    max-height: 140px;
}
.hero-content-col {
    flex: 1 1 60%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    padding-right: 1rem;
}
.hero-content {
    width: 100%;
    max-width: 400px;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}
@media (max-width: 800px) {
    .hero-inner {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .hero-logo-col, .hero-content-col {
        flex: unset;
        width: 100%;
        justify-content: center;
    }
    .hero-content {
        text-align: center;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-logo-img {
        max-width: 120px;
        max-height: 120px;
    }
    .hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
} 

/* FORCE HERO TEXT FLUSH RIGHT */
.hero-content-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
}
.hero-content {
    width: 100% !important;
    max-width: 400px !important;
    text-align: right !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}
@media (max-width: 800px) {
    .hero-content-col {
        padding-right: 0 !important;
        justify-content: center !important;
    }
    .hero-content {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
} 

/* HERO TEXT LEFT, LOGO RIGHT */
.hero-content-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
    padding-left: 1rem !important;
    padding-right: 0 !important;
    width: 100% !important;
}
.hero-content {
    width: 100% !important;
    max-width: 400px !important;
    text-align: left !important;
    margin-right: auto !important;
    margin-left: 0 !important;
}
.hero-logo-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
    padding-right: 1rem !important;
    padding-left: 0 !important;
    width: 100% !important;
}
@media (max-width: 800px) {
    .hero-content-col, .hero-logo-col {
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .hero-content {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
} 

/* HERO TEXT FURTHER RIGHT (LOGO LEFT, TEXT RIGHT) */
.hero-content-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
    padding-right: 4vw !important;
    padding-left: 0 !important;
    width: 100% !important;
}
.hero-content {
    width: 100% !important;
    max-width: 400px !important;
    text-align: right !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}
@media (max-width: 800px) {
    .hero-content-col {
        padding-right: 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .hero-content {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
} 

/* HERO TEXT DIRECTLY UNDER MENU */
.hero-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    width: 100% !important;
}
.hero-content-col {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.hero-content {
    width: 100% !important;
    max-width: 700px !important;
    text-align: right !important;
    margin: 0 !important;
}
.hero-logo-col {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    margin-top: 0 !important;
}
@media (max-width: 800px) {
    .hero-inner, .hero-content-col, .hero-logo-col {
        align-items: center !important;
        justify-content: center !important;
    }
    .hero-content {
        text-align: center !important;
    }
} 

/* HERO LOGO LEFT, TEXT RIGHT UNDER MENU */
.hero-inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
}
.hero-content-col {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: flex-start !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.hero-content {
    width: 100% !important;
    max-width: 700px !important;
    text-align: right !important;
    margin: 0 !important;
}
.hero-logo-col {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-top: 0 !important;
}
@media (max-width: 800px) {
    .hero-inner {
        flex-direction: column !important;
        align-items: center !important;
    }
    .hero-content-col, .hero-logo-col {
        align-items: center !important;
        justify-content: center !important;
    }
    .hero-content {
        text-align: center !important;
    }
} 

/* HERO SECTION TWO-COLUMN GRID */
.hero-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items: center !important;
    width: 100% !important;
    height: 100%;
}
.hero-logo-col {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
}
.hero-content-col {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
}
.hero-content {
    width: 100% !important;
    max-width: 700px !important;
    text-align: left !important;
    margin: 0 !important;
}
@media (max-width: 800px) {
    .hero-inner {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto !important;
    }
    .hero-logo-col, .hero-content-col {
        justify-content: center !important;
        align-items: center !important;
        height: auto;
    }
    .hero-content {
        text-align: center !important;
    }
} 

/* HERO LOGO FURTHER LEFT */
.hero-logo-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-left: 3vw !important;
    height: 100%;
}
@media (max-width: 800px) {
    .hero-logo-col {
        justify-content: center !important;
        padding-left: 0 !important;
    }
} 

/* HERO CONTENT COLUMN PADDING AND APPEAL */
.hero-content-col {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2.5vw 4vw 2.5vw 2vw !important;
    width: 100% !important;
    height: 100%;
}
.hero-content {
    width: 100% !important;
    max-width: 700px !important;
    text-align: left !important;
    margin: 0 !important;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: none;
}
@media (max-width: 800px) {
    .hero-content-col {
        padding: 1.5rem 1rem !important;
    }
    .hero-content {
        text-align: center !important;
    }
} 

/* HEADER NAVIGATION RIGHT ALIGNMENT */
.header-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav {
    margin-left: auto;
}
.mobile-menu {
    margin-left: 1rem;
}
@media (max-width: 800px) {
    .header-container {
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    nav {
        margin-left: 0;
        margin-right: 0;
        flex-shrink: 0;
    }
    
    .mobile-menu {
        margin-left: auto;
    }
} 

/* AGGRESSIVE: FORCE ORANGE NAV LINKS ON SCROLLED HEADER */
header.scrolled .container.header-container nav ul#nav-menu li a,
header.scrolled nav ul li a:visited,
header.scrolled nav ul li a:active,
header.scrolled nav ul li a:focus {
    color: var(--accent) !important;
} 

/* ENTIRE FOOTER GREEN BACKGROUND */
footer {
    background-color: var(--primary) !important;
    color: #fff !important;
}
footer, footer * {
    color: #fff !important;
}
footer a {
    color: #fff !important;
    transition: color 0.2s;
}
footer a:hover {
    color: var(--accent) !important;
} 

/* FORCE ALL FOOTER TEXT WHITE */
footer, footer * {
    color: #fff !important;
}
footer a:hover {
    color: var(--accent) !important;
} 

/* MOST AGGRESSIVE: FORCE ALL FOOTER TEXT WHITE */
footer, footer *, footer *:not(a):not(a *), footer a, footer a:visited, footer a:active, footer a:focus {
    color: #fff !important;
}
footer a:hover {
    color: var(--accent) !important;
} 

/* FORCE ALL FOOTER QUICK LINKS AND CONTACT TEXT WHITE */
.footer-links, .footer-links *, .footer-contact, .footer-contact *,
.footer-links a, .footer-contact a,
.footer-links a:visited, .footer-contact a:visited,
.footer-links a:active, .footer-contact a:active,
.footer-links a:focus, .footer-contact a:focus {
    color: #fff !important;
}
.footer-links a:hover, .footer-contact a:hover {
    color: var(--accent) !important;
} 

/* ABSOLUTE FORCE: ALL FOOTER TEXT WHITE INCLUDING PSEUDO-ELEMENTS */
footer, footer *, footer *::before, footer *::after,
.footer-links, .footer-links *, .footer-links *::before, .footer-links *::after,
.footer-contact, .footer-contact *, .footer-contact *::before, .footer-contact *::after,
.footer-about, .footer-about *, .footer-about *::before, .footer-about *::after,
.copyright, .copyright *, .copyright *::before, .copyright *::after {
    color: #fff !important;
}
footer a:hover, .footer-links a:hover, .footer-contact a:hover, .footer-about a:hover, .copyright a:hover {
    color: var(--accent) !important;
} 

/* TARGET SPECIFIC FOOTER ELEMENTS FOR WHITE TEXT */
.footer-links h3,
.footer-links ul li a,
.footer-links ul li a:visited,
.footer-links ul li a:active,
.footer-links ul li a:focus,
.footer-contact h3,
.footer-contact .contact-info div,
.footer-contact .contact-info a,
.footer-about p,
.footer-about .logo,
.footer-about,
.footer-links,
.footer-contact,
.copyright,
.copyright p {
    color: #fff !important;
}
.footer-links ul li a:hover,
.footer-contact .contact-info a:hover {
    color: var(--accent) !important;
} 

/* REMOVE ORANGE BACKGROUND FROM FOOTER ICONS */
.footer-about .social-links a,
.footer-contact .contact-info i {
    background: none !important;
    background-color: transparent !important;
    color: #fff !important;
    border: 1.5px solid #fff;
    transition: color 0.2s, border-color 0.2s;
}
.footer-about .social-links a:hover,
.footer-contact .contact-info i:hover {
    color: var(--accent) !important;
    border-color: var(--accent) !important;
} 

/* REMOVE FRAMES FROM FOOTER ICONS */
.footer-about .social-links a,
.footer-contact .contact-info i {
    border: none !important;
} 

/* MODERN BENEFITS SECTION UI (ICON ROWS) */
.benefits-feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 2rem;
    margin-top: 2.5rem;
}
.benefit-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 1.5rem 1.5rem 1.5rem 1.2rem;
    min-height: 90px;
}
.benefit-feature-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    background: #fff0e6;
    border-radius: 50%;
    margin-top: 0.2rem;
}
.benefit-feature-content {
    flex: 1 1 auto;
}
.benefit-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #111;
}
.benefit-feature-content p {
    font-size: 1rem;
    color: #222;
    margin: 0;
}
@media (max-width: 900px) {
    .benefits-feature-list {
        grid-template-columns: 1fr;
    }
} 

/* LEADERSHIP CARD 3D FLIP ANIMATION */
.leader-card {
  perspective: 1200px;
  background: none;
  box-shadow: none;
  border: none;
}
.leader-flip {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s linear;
  transform-style: preserve-3d;
}
.leader-card:hover .leader-flip,
.leader-card:focus-within .leader-flip {
  transform: rotateY(-180deg);
}
.leader-front, .leader-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.leader-front {
  z-index: 2;
}
.leader-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: #fff;
  color: #222;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-back .leader-info {
  text-align: left;
}
.leader-back h3 {
  margin-bottom: 0.5rem;
  color: var(--primary);
}
.leader-back p {
  font-size: 1rem;
  color: #222;
  line-height: 1.5;
} 

/* FIX LEADERSHIP CARD FLIP VISIBILITY */
.leaders-grid {
    overflow: visible !important;
}
.leader-card {
    min-height: 480px;
    position: relative;
    background: none !important;
    overflow: visible !important;
}
.leader-flip {
    min-height: 480px;
    position: relative;
}
.leader-front, .leader-back {
    min-height: 480px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.leader-front { z-index: 2; }
.leader-back { z-index: 1; } 

/* CONTACT PAGE: REMOVE ORANGE ICON BACKGROUND AND LINK UNDERLINE */
.contact-details .contact-info i {
    background: none !important;
}
.contact-details a {
    text-decoration: none !important;
} 

/* FIX ICON VISIBILITY IN CONTACT DETAILS ON CONTACT PAGE */
.contact-details .contact-info i {
    display: inline-block !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent) !important;
    font-size: 1.3rem !important;
    vertical-align: middle;
    background: none !important;
    margin-right: 0.7rem;
    min-width: 1.5em;
} 

/* OUR COMPANY CAROUSEL - SMOOTH INFINITE */
.stats-carousel-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.stats-carousel-track {
  display: flex;
  width: fit-content;
  animation: stats-scroll 40s linear infinite;
}
.stats-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: nowrap;
}
.stat-card {
  flex: 0 0 20vw;
  min-width: 220px;
  max-width: 260px;
  margin: 0;
}
@keyframes stats-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
} 

/* FORCE ORANGE MENU TEXT ON ALL PAGES */
header nav ul li a, nav ul li a {
  color: var(--accent) !important;
} 

main, .about, .proposal, .deliver, .benefits, .leadership, .cta, .contact, .services {
    padding-top: 70px !important;
}

@media (max-width: 600px) {
  main, .about, .proposal, .deliver, .benefits, .leadership, .cta, .contact, .services {
    padding-top: 56px !important;
  }
} 

.leader-card:hover .leader-back,
.leader-card:focus-within .leader-back {
  background: #EE7C1B !important;
  color: #fff !important;
}
.leader-card:hover .leader-back .leader-info h3,
.leader-card:focus-within .leader-back .leader-info h3,
.leader-card:hover .leader-back .leader-info p,
.leader-card:focus-within .leader-back .leader-info p {
  color: #fff !important;
} .leader-flip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
  box-shadow:
    0 0 0 12px #EE7C1B inset,
    0 0 32px 0 rgba(238,124,27,0.25);
  opacity: 0;
  transition: opacity 0.2s;
}
.leader-card:hover .leader-flip::before,
.leader-card:focus-within .leader-flip::before {
  opacity: 1;
} 

.services-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
} 

/* Mobile Touch Improvements */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    .btn, .btn-secondary {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve button spacing for touch */
    .hero-btns .btn {
        margin-bottom: 8px;
    }
    
    /* Better spacing for mobile navigation */
    nav ul li a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve mobile menu button */
    .mobile-menu {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    /* Better mobile section spacing */
    section {
        padding: 60px 0;
    }
    
    /* Improve mobile container padding */
    .container {
        padding: 0 20px;
    }
    
    /* Better mobile card spacing */
    .stat-card, .solution-item, .deliver-point {
        margin-bottom: 15px;
    }
    
    /* Improve mobile text readability */
    .hero p, .section-header p, .proposal-text p, .deliver-point p, .benefit-feature-content p {
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    /* Better mobile list spacing */
    .proposal-text ul {
        margin-left: 0;
        padding-left: 20px;
    }
    
    .proposal-text ul li {
        margin-bottom: 10px;
    }
    
    /* Improve mobile icon spacing */
    .solution-icon, .deliver-point i, .benefit-feature-icon {
        margin-bottom: 15px;
    }
    
    /* Better mobile footer spacing */
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-about {
        margin-bottom: 0;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-about .logo {
        font-size: 26px;
        margin-bottom: 15px;
        display: block;
    }
    
    .footer-about p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-links h3:after,
    .footer-contact h3:after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-links ul li {
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-links ul li a {
        font-size: 15px;
        padding: 10px 0;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .footer-links ul li a:before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        padding-left: 0;
        transform: translateY(-2px);
    }
    
    .contact-info {
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 15px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .contact-info:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .contact-info i {
        font-size: 18px;
        margin-right: 12px;
        color: var(--accent);
        flex-shrink: 0;
    }
    
    .contact-info div {
        font-size: 15px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .social-links {
        justify-content: center;
        margin-top: 30px;
        gap: 15px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 45px;
        min-height: 45px;
    }
    
    .social-links a:hover {
        background-color: var(--accent);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
    }
}

/* Extra Small Mobile Optimizations */
@media (max-width: 576px) {
    /* Reduce section padding for very small screens */
    section {
        padding: 40px 0;
    }
    
    /* Smaller container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Better button sizing for small screens */
    .btn, .btn-secondary {
        font-size: 13px;
        padding: 12px 20px;
        min-height: 48px;
    }
    
    /* Improve mobile navigation for small screens */
    nav ul {
        padding: 15px;
    }
    
    nav ul li a {
        font-size: 15px;
        padding: 15px 0;
    }
    
    /* Better mobile menu for small screens */
    .mobile-menu {
        font-size: 18px;
    }
    

    
    /* Improve mobile hero for small screens */
    .hero {
        padding-top: 8rem;
        padding-bottom: 2.5rem;
        min-height: 450px;
    }
    
    /* Better mobile stats for small screens */
    .stats-grid {
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 12px;
    }
    
    /* Improve mobile solution items for small screens */
    .solution-item {
        padding: 18px 15px;
    }
    
    /* Better mobile deliver points for small screens */
    .deliver-point {
        padding: 18px 15px;
    }
    
    /* Improve mobile footer for small screens */
    footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 35px;
        margin-bottom: 30px;
    }
    
    .footer-about {
        padding-bottom: 25px;
    }
    
    .footer-about .logo {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .footer-about p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .footer-links h3,
    .footer-contact h3 {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .footer-links ul li a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .contact-info {
        margin-bottom: 18px;
        padding: 12px;
    }
    
    .contact-info i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .contact-info div {
        font-size: 14px;
    }
    
    .social-links {
        margin-top: 25px;
        gap: 12px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 16px;
        min-width: 40px;
        min-height: 40px;
    }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deliver-points {
        grid-template-columns: repeat(2, 1fr);
    }
} 

/* Privacy Policy Page Styles */
.privacy-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5f3a 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.privacy-hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.privacy-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-hero-content .last-updated {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 0;
}

.privacy-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.privacy-body {
    background: white;
    border-radius: 15px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.privacy-body:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent) 0%, #ff8c1a 100%);
}

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.privacy-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.important-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin: 2rem 0;
    position: relative;
}

.important-notice h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.important-notice h3 i {
    color: #f39c12;
}

.important-notice p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

.sensitive-info-notice {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 10px;
    padding: 20px;
    margin: 2rem 0;
}

.sensitive-info-notice p {
    color: #721c24;
    margin: 0;
    font-weight: 500;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.privacy-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.privacy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f8f9fa;
}

.privacy-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent);
    font-size: 14px;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.contact-info-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin: 1.5rem 0;
}

.contact-info-box p {
    margin: 0.5rem 0;
    color: #555;
}

.contact-info-box a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5f3a 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-content h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-details {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-details h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-details > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 20px;
}

.contact-text h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-text a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(28, 161, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Contact Section in Services Page */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5f3a 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.contact-info-sidebar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-sidebar h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-info-sidebar .contact-info-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
}

.contact-info-sidebar .contact-icon {
    background: var(--accent);
}

.contact-info-sidebar .contact-text h4 {
    color: white;
}

.contact-info-sidebar .contact-text p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-sidebar .contact-text a {
    color: var(--accent);
}

.contact-info-sidebar .contact-text a:hover {
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .privacy-hero {
        min-height: 250px;
        padding: 100px 0 60px;
    }
    
    .privacy-hero-content h1 {
        font-size: 2rem;
    }
    
    .privacy-hero-content p {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-body {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section p {
        font-size: 0.95rem;
    }
    
    .privacy-list li {
        padding: 8px 0;
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .important-notice,
    .sensitive-info-notice {
        padding: 15px;
        margin: 1.5rem 0;
    }
    
    .important-notice h3 {
        font-size: 1.1rem;
    }
    
    .contact-info-box {
        padding: 15px;
    }
    
    .contact-hero {
        min-height: 300px;
        padding: 60px 0;
    }
    
    .contact-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-hero .hero-content p {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }
    
    .contact-details,
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .contact-info-sidebar {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-details h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
} 

/* Black CTA Section for Contact and Services Pages */
.cta, .contact-cta {
    background: #000 !important;
    color: #fff !important;
    padding: 80px 0;
    position: relative;
    text-align: center;
}

.cta .cta-content, .contact-cta .cta-content {
    margin: auto;
    text-align: center;
    max-width: 600px;
    padding: 0 24px;
}

.cta .cta-content h2, .contact-cta .cta-content h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta .cta-content p, .contact-cta .cta-content p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta .btn, .contact-cta .btn {
    background: #EE7C1B !important;
    color: #fff !important;
    border: 2px solid #EE7C1B !important;
    border-radius: 30px;
    padding: 15px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    display: inline-block;
    margin: 0 auto;
}

.cta .btn:hover, .contact-cta .btn:hover {
    background: #fff !important;
    color: #000 !important;
    border-color: #EE7C1B !important;
    box-shadow: 0 4px 24px rgba(238,124,27,0.15);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 768px) {
    .cta, .contact-cta {
        padding: 60px 0;
    }
    .cta .cta-content, .contact-cta .cta-content {
        padding: 0 10px;
    }
    .cta .cta-content h2, .contact-cta .cta-content h2 {
        font-size: 1.6rem;
    }
    .cta .cta-content p, .contact-cta .cta-content p {
        font-size: 1rem;
    }
    .cta .btn, .contact-cta .btn {
        width: 100%;
        max-width: 320px;
        padding: 15px 0;
        font-size: 1rem;
    }
}

/* WordPress Template Styles */
.page-content, .single-post, .archive-page, .search-results, .error-404 {
    padding-top: 140px;
}

.page-header, .post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1, .post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-body, .post-body {
    line-height: 1.8;
}

.post-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-thumbnail {
    margin-bottom: 2rem;
    text-align: center;
}

.post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-tags h4 {
    margin-bottom: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tags a {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    text-decoration: none;
    font-size: 0.8rem;
}

.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-next {
    text-align: right;
}

.nav-previous a, .nav-next a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Archive and Search Styles */
.archive-grid, .search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card, .service-card, .team-card, .testimonial-card, .search-result {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover, .service-card:hover, .team-card:hover, .testimonial-card:hover, .search-result:hover {
    transform: translateY(-5px);
}

.blog-thumbnail, .service-thumbnail, .team-thumbnail, .result-thumbnail {
    height: 200px;
    overflow: hidden;
}

.blog-thumbnail img, .service-thumbnail img, .team-thumbnail img, .result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content, .service-content, .team-content, .testimonial-content, .result-content {
    padding: 1.5rem;
}

.blog-meta, .result-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
}

.blog-excerpt, .service-excerpt, .team-excerpt, .result-excerpt {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.team-social a:hover {
    background: var(--secondary);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--primary);
}

/* Pagination */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

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

/* Search Form */
.search-form {
    max-width: 500px;
    margin: 2rem auto;
}

.search-input-group {
    display: flex;
    border: 2px solid #eee;
    border-radius: 25px;
    overflow: hidden;
}

.search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: var(--secondary);
}

/* 404 Page */
.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.error-actions {
    margin: 2rem 0;
}

.error-actions .btn {
    margin: 0 0.5rem;
}

.suggestions {
    margin-top: 3rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

.suggestions li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.suggestions li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive Design for WordPress Templates */
@media (max-width: 768px) {
    .page-header h1, .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .archive-grid, .search-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input-group {
        flex-direction: column;
        border-radius: 10px;
    }
    
    .search-submit {
        border-radius: 0 0 8px 8px;
    }
}

