/* ===================================
   Stellar Innovation - Custom Stylesheet
   Base Font Size: 14px (paragraphs)
   Primary Color: #d70000
   Font Family: Poppins
   =================================== */

/* ===================================
   1. ROOT VARIABLES & RESET
   =================================== */
:root {
    --primary-color: #d70000;
    --primary-dark: #a50000;
    --primary-light: #ff1a1a;
    --dark-bg: #1a1a1a;
    --dark-grey: #2d2d2d;
    --medium-grey: #666666;
    --light-grey: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ===================================
   2. TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   3. UTILITY CLASSES
   =================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark-grey {
    background-color: var(--dark-grey);
}

.bg-light-grey {
    background-color: var(--light-grey);
}

.min-vh-75 {
    min-height: 75vh;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* ===================================
   4. BUTTONS
   =================================== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 4px;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* ===================================
   5. HEADER & NAVIGATION
   =================================== */
.header-main {
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar-left a {
    display: inline-block;
}

.top-bar-right .social-link {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    margin-left: 8px;
    background-color: rgba(255,255,255,0.1);
    transition: var(--transition-fast);
}

.top-bar-right .social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 18px;
    margin: 0 5px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 10px;
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--light-grey);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu (Offcanvas) */
.offcanvas {
    width: 280px !important;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    height: 35px;
    width: auto;
}

.offcanvas-body {
    padding: 20px;
}

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

.mobile-nav-list > li {
    margin-bottom: 5px;
}

.mobile-nav-link {
    display: block;
    padding: 12px 15px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--light-grey);
    color: var(--primary-color);
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

.mobile-submenu li {
    margin-bottom: 5px;
}

.mobile-submenu a {
    display: block;
    padding: 8px 15px;
    color: var(--text-light);
    font-size: 13px;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.mobile-submenu a:hover {
    background-color: var(--light-grey);
    color: var(--primary-color);
}

.mobile-contact-info {
    padding: 15px;
    background-color: var(--light-grey);
    border-radius: 4px;
}

.mobile-contact-info p {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 999;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 11px;
    padding: 5px 10px;
    transition: var(--transition-fast);
    flex: 1;
    text-align: center;
}

.mobile-nav-item i {
    font-size: 20px;
    margin-bottom: 3px;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--primary-color);
}

/* ===================================
   6. HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: fill;
    min-width: 100%;
    min-height: 100%;
    transform: scale(1.1);
    transform-origin: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(215,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===================================
   7. SECTIONS
   =================================== */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 20px;
}

/* ===================================
   8. SERVICE CARDS
   =================================== */
.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   9. ABOUT SECTION
   =================================== */
.about-section {
    padding: 80px 0;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ===================================
   10. CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-grey) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.cta-section p {
    color: var(--white);
    font-size: 16px;
}

/* ===================================
   11. FOOTER
   =================================== */
.footer-main {
    background-color: var(--dark-bg);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-contact li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-social .social-link {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    margin-left: 10px;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social .social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}


/* ===================================
   13. WHATSAPP FLOAT BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 997;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

/* ===================================
   14. FORMS
   =================================== */
.form-control {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(215,0,0,0.15);
    outline: none;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* ===================================
   15. CARDS
   =================================== */
.card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   16. BREADCRUMB
   =================================== */
.breadcrumb-section {
    background-color: var(--dark-grey);
    padding: 60px 0;
    text-align: center;
}

.breadcrumb-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* ===================================
   17. TEAM CARDS
   =================================== */
.team-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.team-img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--primary-color);
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-position {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-description {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   18. CASE STUDY / BLOG CARDS
   =================================== */
.case-study-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.case-study-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.case-study-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-study-content {
    padding: 25px;
}

.case-study-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.case-study-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-study-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.case-study-link:hover {
    color: var(--primary-dark);
}

/* ===================================
   19. SHOP / PRODUCT CARDS
   =================================== */
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-content {
    padding: 25px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===================================
   20. CONTACT PAGE
   =================================== */
.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
    transition: var(--transition-base);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-info-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===================================
   21. RESPONSIVE DESIGN
   =================================== */

/* Tablets and below */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    
    .whatsapp-float {
        bottom: 90px;
    }
}

/* Mobile devices */
@media (max-width: 767px) {
    body {
        padding-bottom: 60px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.35rem;
    }
    
    .hero-section {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 80px;
        right: 15px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

/* Small mobile devices */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ===================================
   22. ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity

 1;
    }
}

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

.fade-in {
    animation: fadeIn 0.6s ease;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ===================================
   23. LOADING STATES
   =================================== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ===================================
   24. ALERTS & NOTIFICATIONS
   =================================== */
.alert {
    font-size: 14px;
    border-radius: 4px;
    padding: 15px 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* ===================================
   25. PAGINATION
   =================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   26. BADGES
   =================================== */
.badge {
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
}

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

/* ===================================
   27. SCROLLBAR STYLING
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===================================
   28. PRINT STYLES
   =================================== */
@media print {
    .header-main,
    .footer-main,
    .whatsapp-float,
    .mobile-bottom-nav {
        display: none !important;
    }
}


/* ===================================
   CLIENT LOGOS SECTION
   =================================== */
.client-logos-section {
    background-color: #f8f9fa;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition-base);
    margin-bottom: 20px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.client-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Mobile responsiveness for client logos */
@media (max-width: 768px) {
    .client-logo {
        height: 100px;
        padding: 15px;
    }
    
    .client-logo img {
        max-height: 70px;
    }
}

/* ===================================
   AEO INDEX PAGE STYLES
   =================================== */

/* AEO Explainer Block */
.aeo-explainer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aeo-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.evolution-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: var(--transition-base);
}

.chart-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.chart-step.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.chart-step.highlight .step-icon {
    background: rgba(255,255,255,0.2);
}

.chart-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* Pain & Opportunity Block */
.comparison-panel {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 100%;
}

.without-aeo {
    border-left: 4px solid #dc3545;
}

.with-aeo {
    border-left: 4px solid #28a745;
}

.panel-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.chat-example {
    margin: 1.5rem 0;
}

.chat-bubble {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.chat-bubble.ai {
    background: #e3f2fd;
    border-left-color: #2196f3;
}

.panel-result {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
}

.panel-result h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Solution Block */
.solution-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
}

.solution-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.solution-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.solution-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Social Proof Block */
.proof-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.proof-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.proof-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.proof-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Differentiator Block */
.differentiator-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.point-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.framework-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.framework-item {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
}

.framework-connector {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

.framework-result {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 1rem;
}

/* Offer Block */
.offer-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.offer-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid #ddd;
}

.offer-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 25px rgba(215, 0, 0, 0.2);
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.offer-card.featured h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.offer-card p {
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.offer-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-left: 1.5rem;
}

.offer-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.offer-card ul li:last-child {
    border-bottom: none;
}

.offer-card .btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition-base);
}

.offer-card .btn-light {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.offer-card .btn-light:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.offer-card .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.offer-card .btn-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Ongoing Engagement Block */
.engagement-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .aeo-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .evolution-chart {
        flex-direction: column;
    }
    
    .chart-arrow {
        transform: rotate(90deg);
    }
    
    .engagement-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .framework-diagram {
        padding: 1rem;
    }
    
    .offer-card.featured {
        transform: none;
    }
    
    .offer-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* ===================================
   AI BUSINESS AUDIT PAGE STYLES
   =================================== */

/* STOGAP Explainer Block */
.stogap-explainer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stogap-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stogap-stats .stat-item {
    text-align: center;
}

.stogap-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stogap-stats .stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Audit Process Block */
.audit-step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
}

.audit-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.audit-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.audit-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.audit-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Audit Example Items */
.audit-example {
    margin: 1.5rem 0;
}

.example-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.example-item i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.example-item .text-danger {
    color: #dc3545 !important;
}

.example-item .text-success {
    color: #28a745 !important;
}

/* Audit Diagram */
.audit-diagram {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.diagram-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.component-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.component-item {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition-base);
}

.component-item:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Responsiveness for AI Audit Page */
@media (max-width: 768px) {
    .stogap-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .component-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-diagram {
        padding: 1rem;
    }
}

/* ===================================
   NEW INDEX PAGE STYLES
   =================================== */

/* Attention Section */
.attention-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.attention-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.attention-stats .stat-item {
    text-align: center;
}

.attention-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.attention-stats .stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.platform-item {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: var(--transition-base);
}

.platform-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.platform-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.platform-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.platform-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Discoverable Section */
.discoverable-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
}

.discoverable-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.discoverable-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.discoverable-step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.discoverable-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Proof Section */
.proof-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.proof-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
}

.proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.proof-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.proof-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.proof-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Final CTA Section */
.final-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #d70000, #8b0000);
}

.final-cta-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.final-cta-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: fill;
    min-width: 100%;
    min-height: 100%;
    transform: scale(1.1);
    transform-origin: center center;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(215, 0, 0, 0.8), rgba(139, 0, 0, 0.8));
    z-index: -1;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .attention-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
    }
    
    .discoverable-step {
        padding: 1.5rem;
    }
    
    .discoverable-step .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .discoverable-step h3 {
        font-size: 1.1rem;
    }
}

/* ===================================
   4D GROWTH FRAMEWORK STYLES
   =================================== */

/* Framework Overview */
.framework-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.framework-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    height: 100%;
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.framework-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.framework-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.framework-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Step Badges */
.step-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Deliverable Boxes */
.deliverable-box {
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.deliverable-box h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.deliverable-box p {
    margin-bottom: 0;
    font-weight: 500;
}

/* Outcome Section */
.outcome-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.outcome-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    height: 100%;
}

.outcome-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.outcome-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.outcome-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.outcome-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.final-deliverable {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Mobile Responsiveness for 4D Framework */
@media (max-width: 768px) {
    .framework-card {
        padding: 1.5rem;
    }

    .framework-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .framework-card h3 {
        font-size: 1.1rem;
    }

    .deliverable-box {
        padding: 1rem;
    }

    .outcome-card {
        padding: 1rem;
    }

    .outcome-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .final-deliverable {
        padding: 1.5rem;
    }
}

/* ===================================
   CROSS-BROWSER COMPATIBILITY FIXES
   =================================== */

/* CSS Reset for all browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Normalize for all browsers */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
}

/* Remove default button styles */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default image styles */
img {
    max-width: 100%;
    height: auto;
    border: 0;
}

/* Remove default form styles */
input, textarea, select {
    border: none;
    outline: none;
    background: transparent;
}

/* Remove default button styles */
button {
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Remove default fieldset styles */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

/* Remove default legend styles */
legend {
    border: 0;
    padding: 0;
}

/* Internet Explorer specific fixes */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .container {
        max-width: 1200px;
    }
    
    .row {
        display: -ms-flexbox;
        display: flex;
    }
    
    .col-lg-3, .col-lg-4, .col-lg-6, .col-lg-12 {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }
}

/* Safari specific fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .btn {
        -webkit-appearance: none;
        border-radius: 0;
    }
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
    .btn {
        -moz-appearance: none;
    }
}

/* Cross-browser button fixes */
.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Cross-browser form fixes */
input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    outline: none;
}

/* Cross-browser flexbox fixes */
.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

/* Cross-browser transform fixes */
.transform-translateX {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/* Cross-browser transition fixes */
.transition-all {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Cross-browser filter fixes */
.filter-grayscale {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* Cross-browser backdrop-filter fixes */
.backdrop-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Cross-browser box-shadow fixes */
.shadow-lg {
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Cross-browser border-radius fixes */
.rounded {
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    border-radius: 0.375rem;
}

/* Cross-browser gradient fixes */
.bg-gradient {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -webkit-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -moz-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -ms-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -o-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Flexbox fallbacks for older browsers */
.flex-fallback {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Grid fallbacks for older browsers */
.grid-fallback {
    display: -ms-grid;
    display: grid;
}

/* Transform fallbacks */
.transform-fallback {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

/* Transition fallbacks */
.transition-fallback {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Filter fallbacks for older browsers */
.filter-fallback {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

/* ===================================
   VALUED CLIENTS CAROUSEL STYLES
   =================================== */

.valued-clients-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    /* Fallback for older browsers */
    background: #f8f9fa;
    background: -webkit-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -moz-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -ms-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: -o-linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.clients-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 2rem 0;
}

.clients-carousel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    -moz-transition: -moz-transform 0.5s ease-in-out;
    -ms-transition: -ms-transform 0.5s ease-in-out;
    -o-transition: -o-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 0 2rem;
}

.client-slide {
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0 1rem;
}

.client-slide:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.client-logo {
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.client-logo:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.carousel-btn:active {
    -webkit-transform: scale(0.95);
    -moz-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
}

.prev-btn {
    left: 1rem;
}

.next-btn {
    right: 1rem;
}

/* Mobile Responsiveness for Clients Carousel */
@media (max-width: 768px) {
    .clients-carousel {
        gap: 1rem;
        padding: 0 1rem;
    }

    .client-slide {
        width: 150px;
        height: 90px;
        margin: 0 0.5rem;
    }

    .client-logo {
        max-width: 160px;
        max-height: 90px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 0.5rem;
    }

    .next-btn {
        right: 0.5rem;
    }
}

/* ===================================
   ABOUT COMPANY PAGE STYLES
   =================================== */

/* Evolution Cards */
.evolution-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.evolution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.evolution-year .badge {
    padding: 10px 20px;
    font-size: 1.1rem;
}

/* Mission Cards */
.mission-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.mission-icon i {
    color: #d70000;
}

/* Promise Section */
.promise-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #d70000, #8b0000);
    border: none;
}

.final-cta-section .btn {
    background: #fff;
    color: #d70000;
    border: 2px solid #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.final-cta-section .btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .evolution-card,
    .mission-card {
        margin-bottom: 20px;
    }
    
    .promise-section {
        padding: 30px 20px !important;
    }
    
    .final-cta-section {
        padding: 30px 20px !important;
    }
}

/* ===================================
   SHOP PAGE STYLES
   =================================== */

/* Product Badge */
.product-badge .badge {
    padding: 8px 16px;
    font-size: 1.2rem;
    border-radius: 20px;
}

/* Product Title */
.product-title {
    color: #d70000;
    font-weight: 700;
    line-height: 1.3;
}

/* Outcome Box */
.outcome-box {
    border-left: 4px solid #d70000;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Shop Hero Section */
.shop-hero {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Product Cards - Enhanced */
.product-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Product Images */
.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 30px;
}

/* Product Price */
.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d70000;
    margin-bottom: 15px;
}

/* Product Description */
.product-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Product Features List */
.product-features {
    margin-bottom: 25px;
}

.product-features li {
    padding: 5px 0;
    color: #495057;
}

/* Buy Now Buttons */
.btn-buy-now {
    background: linear-gradient(135deg, #d70000, #8b0000);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #8b0000, #d70000);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 0, 0, 0.3);
    color: white;
}

/* Responsive Shop Styles */
@media (max-width: 768px) {
    .product-content {
        padding: 20px;
    }
    
    .product-img {
        height: 200px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .outcome-box {
        padding: 15px !important;
    }
}

/* ===================================
   TEAM PAGE STYLES
   =================================== */

/* Structure Card */
.structure-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Stat Numbers */
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Skill Items */
.skill-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Training Cards */
.training-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.training-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.training-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.training-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Join Team Section */
.join-team-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #dee2e6;
}

/* Team Cards - Updated */
.team-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

/* LinkedIn Button Styling */
.btn-outline-primary.linkedin-btn {
    border-color: #0077b5;
    color: #0077b5;
}

.btn-outline-primary.linkedin-btn:hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: white;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.team-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-card .team-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive Team Styles */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .skill-item {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
    
    .training-card,
    .team-card {
        padding: 20px;
    }
    
    .join-team-section {
        padding: 30px 20px !important;
    }
}
