@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* ==========================================================================
   CSS Variables and Custom Properties
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #184BFF;
    --secondary-color: #FFCC00;
    --accent-color: #FF0000;
    --dark-color: #1a1f71;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --line-height-base: 1.6;
    --line-height-tight: 1.25;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --header-height: 80px;
    --header-height-mobile: 60px;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-index layers */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==========================================================================
   Reset and Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: visible !important;
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto !important;
}

/* ==========================================================================
   Layout Components
   ========================================================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-lg);
}

/* ==========================================================================
   Header and Navigation
   ========================================================================== */
header {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    height: var(--header-height);
    transition: all var(--transition-base);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-brand a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all var(--transition-base);
    border-radius: var(--border-radius);
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(24, 75, 255, 0.1);
}

/* Dropdown Menu */
.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7em;
    margin-left: var(--spacing-xs);
    transition: transform var(--transition-base);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm) 0;
    z-index: var(--z-dropdown);
    flex-direction: column;
    border: 1px solid var(--gray-200);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    height: auto;
}

.dropdown-menu a {
    padding: var(--spacing-sm) var(--spacing-lg);
    height: auto;
    border-radius: 0;
    color: var(--text-color);
    transition: all var(--transition-base);
}

.dropdown-menu a:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    padding: 0.5rem;
    cursor: pointer;
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    border-radius: 4px;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
    background: rgba(24, 75, 255, 0.1);
}

.mobile-menu-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==========================================================================
   Main Content
   ========================================================================== */
main {
    flex: 1 0 auto;
    margin-top: var(--header-height);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* === FINAL OVERRIDES: Remove persistent space below footer and enforce carousel speed === */
main {
  flex: 1 0 auto !important;
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    z-index: 1;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
    background: none !important;
    overflow: hidden !important;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-image {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Remove any blue background from hero or hero-carousel */
.hero, .hero-carousel, .carousel-slide, .carousel-image {
    background: none !important;
}

.hero h1,
.hero h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: var(--line-height-tight);
}

.hero .subtitle {
    font-family: var(--font-secondary);
    opacity: 0.9;
    margin: var(--spacing-lg) auto var(--spacing-xl);
    font-size: var(--font-size-xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 600px;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.btn,
.contact-button,
.cta-button,
.submit-button,
a.btn,
a.contact-button,
a.cta-button,
button[type=submit] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    min-width: 140px;
    height: 45px;
    border: none;
    cursor: pointer;
    text-align: center;
    background: var(--accent-color);
    color: var(--white);
    margin: var(--spacing-sm) auto;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn:hover,
.contact-button:hover,
.cta-button:hover,
.submit-button:hover,
a.btn:hover,
a.contact-button:hover,
a.cta-button:hover,
button[type=submit]:hover {
    background: #c00;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.hero .contact-button,
.hero .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 50px;
    border-radius: 25px;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    margin: var(--spacing-sm);
    padding: 0 var(--spacing-xl);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero .contact-button:hover,
.hero .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Social Media Icons
   ========================================================================== */
.social-media,
.footer-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-md) 0;
    flex-wrap: wrap;
}

.social-media a,
.footer-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.social-media a i,
.footer-icons a i {
    font-size: var(--font-size-xl);
    transition: all var(--transition-base);
    z-index: 2;
    position: relative;
}

/* Social Media Platform Specific Styles */
.social-media a[aria-label*="Instagram"],
.footer-icons a[aria-label*="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-media a[aria-label*="Facebook"],
.footer-icons a[aria-label*="Facebook"] {
    background: #1877f2;
    color: var(--white);
}

.social-media a[aria-label*="LinkedIn"],
.footer-icons a[aria-label*="LinkedIn"] {
    background: #0077b5;
    color: var(--white);
}

.social-media a[aria-label*="TikTok"],
.footer-icons a[aria-label*="TikTok"] {
    background: linear-gradient(45deg, #000, #25f4ee, #fe2c55);
    color: var(--white);
}

.social-media a[aria-label*="X"],
.social-media a[aria-label*="Twitter"],
.footer-icons a[aria-label*="X"],
.footer-icons a[aria-label*="Twitter"] {
    background: #000;
    color: var(--white);
}

.social-media a[aria-label*="phone"],
.footer-icons a[aria-label*="phone"] {
    background: #25d366;
    color: var(--white);
}

.social-media a[aria-label*="email"],
.footer-icons a[aria-label*="email"] {
    background: #dc3545;
    color: var(--white);
}

.social-media a[aria-label*="location"],
.footer-icons a[aria-label*="location"] {
    background: #6f42c1;
    color: var(--white);
}

/* Hover Effects */
.social-media a:hover,
.footer-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-media a:hover i,
.footer-icons a:hover i {
    animation: icon-bounce 0.6s ease-in-out;
}

@keyframes icon-bounce {
    0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================================================
   Contact Information
   ========================================================================== */
.contact-info-banner {
    background-color: var(--gray-200);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.contact-info-banner h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-xl);
    color: var(--text-color);
}

.contact-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin: 2rem 0 1.5rem 0;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    font-size: 1.5rem;
}

.contact-button i {
    font-size: 1.4rem;
    transition: all var(--transition-base);
    z-index: 2;
    position: relative;
}

.contact-button.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.contact-button.facebook {
    background: #1877f2;
    color: #fff;
}

.contact-button.linkedin {
    background: #0077b5;
    color: #fff;
}

.contact-button.tiktok {
    background: linear-gradient(45deg, #000, #25f4ee, #fe2c55);
    color: #fff;
}

.contact-button.x-twitter {
    background: #000;
    color: #fff;
}

.contact-button.phone {
    background: #25d366;
    color: #fff;
}

.contact-button:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-button:hover i {
    animation: icon-bounce 0.6s ease-in-out;
}

@keyframes icon-bounce {
    0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.contact-details,
.contact-info,
.contact-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-lg);
    width: 100%;
    margin: 0 auto;
}

.contact-details .contact-item,
.contact-info .contact-item,
.contact-section .contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    min-width: 0;
    flex: 1 1 120px;
    margin: 0;
    padding: var(--spacing-sm) 0;
    box-sizing: border-box;
}

.contact-details .contact-item i,
.contact-info .contact-item i,
.contact-section .contact-item i {
    font-size: var(--font-size-lg);
    margin-right: var(--spacing-sm);
    color: var(--accent-color);
    width: 20px;
    text-align: center;
    display: inline-block;
    min-width: 20px;
}

.contact-details .contact-item span,
.contact-info .contact-item span,
.contact-section .contact-item span {
    font-size: var(--font-size-base);
    word-break: break-all;
}

.contact-details .contact-item .contact-label,
.contact-info .contact-item .contact-label,
.contact-section .contact-item .contact-label {
    font-weight: 600;
    margin-right: var(--spacing-xs);
}

.contact-details .contact-item .contact-value,
.contact-info .contact-item .contact-value,
.contact-section .contact-item .contact-value {
    font-weight: 400;
}

.contact-details h3 i,
.contact-info h3 i,
.contact-section h3 i {
    font-size: var(--font-size-2xl);
    margin-right: var(--spacing-md);
    color: var(--accent-color);
    vertical-align: middle;
}

/* ==========================================================================
   Font Awesome Icons
   ========================================================================== */
.fa,
.fa-brands,
.fa-light,
.fa-regular,
.fa-solid,
.fab,
.fal,
.far,
.fas {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    vertical-align: middle;
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2) format('woff2');
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-regular-400.woff2) format('woff2');
}

.fa-regular,
.fa-solid,
.far,
.fas {
    font-family: 'Font Awesome 6 Free';
}

.fa-solid,
.fas {
    font-weight: 900;
}

.fa-regular,
.far {
    font-weight: 400;
}

.contact-button.tiktok i,
.contact-button.x-twitter i,
.fa-brands,
.fab,
.footer-icons a[aria-label*="X"] i,
.footer-icons a[aria-label*="TikTok"] i,
.social-links a[href*="x.com"] i,
.social-links a[href*="tiktok"] i,
.social-links a[href*="twitter"] i,
.social-media a[aria-label*="X"] i,
.social-media a[aria-label*="TikTok"] i {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

/* Icon Content */
.fa-brands.fa-instagram::before { content: "\f16d"; }
.fa-brands.fa-facebook-f::before { content: "\f39e"; }
.fa-brands.fa-linkedin-in::before { content: "\f0e1"; }
.fa-brands.fa-tiktok::before { content: "\e07b"; }
.fa-brands.fa-x-twitter::before { content: "\e61b"; }
.fa-solid.fa-phone::before { content: "\f095"; }
.fa-solid.fa-envelope::before { content: "\f0e0"; }
.fa-solid.fa-location-dot::before { content: "\f3c5"; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: linear-gradient(135deg, #FFCC00 0%, #FFD700 100%) !important;
    color: #111 !important;
    text-align: center;
    padding: 2rem 0 1.2rem 0;
    font-size: 1.08rem;
    border-top: none !important;
}
footer p {
  margin: 0;
  color: #111 !important;
  font-weight: 600;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  footer {
    padding: 1.2rem 0 0.7rem 0;
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   Company Carousel
   ========================================================================== */
/* Remove legacy carousel styles to prevent conflicts */
/*
.company-carousel, .company-track, .company-slide, .company-slide img, .company-carousel:hover .company-track, @keyframes company-scroll, .logo-carousel, .logo-track, .logo-slide, .logo-slide img, .logo-carousel:hover .logo-track, @keyframes logo-scroll {
  all: unset !important;
  display: none !important;
}
*/

.carousel-section {
    text-align: center;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background: var(--gray-100);
}

.carousel-section h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    font-family: var(--font-primary);
}

.carousel-section p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-family: var(--font-secondary);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.icon-sm,
.icon-small {
    font-size: var(--font-size-base);
}

.icon-md,
.icon-medium {
    font-size: var(--font-size-2xl);
}

.icon-large,
.icon-lg {
    font-size: var(--font-size-3xl);
}

.icon-xl {
    font-size: var(--font-size-4xl);
}

.icon-xs {
    font-size: var(--font-size-sm);
}

.icon-with-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.icon-with-text i {
    font-size: var(--font-size-lg);
}

.icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all var(--transition-base);
}

.icon-bg:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.btn .fa,
.btn .fab,
.btn .fal,
.btn .far,
.btn .fas {
    margin-right: var(--spacing-sm);
}

.nav-links .fa,
.nav-links .fab,
.nav-links .fal,
.nav-links .far,
.nav-links .fas {
    margin-right: var(--spacing-xs);
}

/* Animation utilities */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-icon {
    animation: 3s ease-in-out infinite float;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pulse-icon {
    animation: 2s infinite pulse;
}

.icon-spin {
    animation: 2s linear infinite fa-spin;
}

.icon-pulse {
    animation: 1s steps(8) infinite fa-spin;
}

@keyframes fa-spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* Icon color utilities */
.icon-secondary { color: var(--accent-color); }
.icon-success { color: #28a745; }
.icon-warning { color: #ffc107; }
.icon-danger { color: #dc3545; }
.icon-info { color: #17a2b8; }
.icon-light { color: var(--gray-100); }
.icon-dark { color: var(--gray-800); }

.icon-loading {
    opacity: 0.5;
    animation: 1.5s infinite icon-pulse;
}

.icon-error {
    animation: 0.5s icon-shake;
    color: #dc3545;
}

@keyframes icon-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ==========================================================================
   Mobile Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    /* Header adjustments */
    header {
        height: var(--header-height-mobile);
    }
    
    .header-container {
        padding: 0 var(--spacing-md);
    }
    
    .logo-img {
        height: 40px;
    }

    /* Show mobile menu button on mobile */
    .mobile-menu-btn {
        display: block !important;
    }

    /* Navigation - hide desktop nav by default */
    .nav-links {
        display: none !important;
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        z-index: var(--z-dropdown);
        overflow-y: auto;
        gap: var(--spacing-md);
        border-top: 1px solid var(--gray-200);
    }
    
    /* Show mobile nav when active */
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        margin: var(--spacing-sm) 0;
        width: 100%;
        height: auto;
    }
    
    .nav-links a {
        padding: var(--spacing-md);
        font-size: var(--font-size-lg);
        border-radius: var(--border-radius);
        transition: all var(--transition-base);
        width: 100%;
        display: block;
        height: auto;
    }
    
    .nav-links a:hover {
        background: rgba(24, 75, 255, 0.1);
        color: var(--primary-color);
    }
    
    /* Mobile menu button - ensure it shows */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: var(--gray-100);
        margin-top: var(--spacing-sm);
        border-radius: var(--border-radius);
        border: 1px solid var(--gray-200);
    }
    
    .dropdown.active .dropdown-menu {
        display: flex;
    }
    
    /* Hero adjustments */
    .hero {
        margin-top: var(--header-height-mobile);
        padding: var(--spacing-2xl) var(--spacing-md) var(--spacing-xl);
        min-height: calc(100vh - var(--header-height-mobile));
    }
    
    .hero h1,
    .hero h2 {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--spacing-md);
        line-height: var(--line-height-tight);
    }
    
    .hero .subtitle {
        margin-bottom: var(--spacing-xl);
        line-height: var(--line-height-base);
        font-size: var(--font-size-lg);
    }
    
    /* Container adjustments */
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Button adjustments */
    .btn,
    .contact-button,
    .cta-button {
        padding: var(--spacing-md) var(--spacing-xl);
        font-size: var(--font-size-base);
        min-width: 120px;
        border-radius: 25px;
        margin: var(--spacing-sm) 0;
    }

    /* Social media adjustments */
    .social-media a,
    .footer-icons a {
        width: 45px;
        height: 45px;
        margin: 0 var(--spacing-xs);
    }

    .social-media a i,
    .footer-icons a i {
        font-size: var(--font-size-lg);
    }

    /* Contact details adjustments */
    .contact-details i,
    .contact-info i {
        font-size: var(--font-size-base);
        margin-right: var(--spacing-sm);
        width: 16px;
    }

    .contact-details h3 i,
    .contact-info h3 i {
        font-size: var(--font-size-xl);
        margin-right: var(--spacing-sm);
    }

    /* Hide footer icons on mobile except for specific sections */
    footer .footer-icons,
    footer .social-media {
        display: none;
    }

    /* Keep social media icons visible in specific sections */
    .contact-banner .social-media,
    .contact-info-banner .social-media,
    .get-in-touch-banner .social-media {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .contact-banner .social-media a,
    .contact-info-banner .social-media a,
    .get-in-touch-banner .social-media a {
        width: 45px;
        height: 45px;
        margin: 0 var(--spacing-xs);
    }

    .contact-banner .social-media a i,
    .contact-info-banner .social-media a i,
    .get-in-touch-banner .social-media a i {
        font-size: var(--font-size-lg);
    }

    /* Footer adjustments */
    footer {
        padding: var(--spacing-lg) 0;
        text-align: center;
    }
    
    footer p {
        margin-bottom: var(--spacing-sm);
        font-size: var(--font-size-sm);
    }

    /* Contact buttons adjustments */
    .contact-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.7rem;
        margin: 1.2rem 0 1rem 0;
    }
    
    .contact-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-button i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile adjustments */
    header {
        padding: var(--spacing-xs) var(--spacing-sm);
        height: 50px;
    }
    
    .header-container {
        height: 50px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero {
        margin-top: 50px;
        padding: var(--spacing-xl) var(--spacing-sm) var(--spacing-lg);
        min-height: calc(100vh - 50px);
    }
    
    .hero h1,
    .hero h2 {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero .subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-lg);
    }
    
    .nav-links {
        top: 50px;
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .nav-links a {
        padding: var(--spacing-sm);
        font-size: var(--font-size-base);
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn,
    .contact-button,
    .cta-button {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
        min-width: 100px;
    }
    
    .social-media a,
    .footer-icons a {
        width: 40px;
        height: 40px;
        margin: 0 var(--spacing-xs);
    }

    .social-media a i,
    .footer-icons a i {
        font-size: var(--font-size-base);
    }

    .contact-details i,
    .contact-info i {
        font-size: var(--font-size-sm);
        margin-right: var(--spacing-xs);
        width: 14px;
    }

    .contact-details h3 i,
    .contact-info h3 i {
        font-size: var(--font-size-lg);
        margin-right: var(--spacing-sm);
    }

    footer {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .contact-buttons {
        gap: 0.4rem;
        margin: 0.7rem 0 0.7rem 0;
    }

    .contact-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-button i {
        font-size: 0.95rem;
    }

    .contact-info-banner .social-media {
        gap: var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }
    
    .contact-banner .social-media a,
    .contact-info-banner .social-media a,
    .get-in-touch-banner .social-media a {
        width: 40px;
        height: 40px;
    }
    
    /* Company carousel adjustments */
    .company-logo {
        min-width: 80px;
        height: 50px;
        margin: 0 var(--spacing-sm);
    }
    
    .carousel-section h2 {
        font-size: var(--font-size-2xl);
    }
}

/* ==========================================================================
   Touch Device Optimizations
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .contact-button,
    .cta-button,
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
    }
    
    .btn:active,
    .contact-button:active,
    .cta-button:active,
    .nav-links a:active {
        transform: scale(0.95);
        transition: transform 0.1s;
    }

    .btn:hover,
    .contact-button:hover,
    .cta-button:hover,
    .nav-links a:hover {
        transform: none;
    }
    
    .nav-links {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .contact-buttons,
    .mobile-menu-btn,
    .nav-links,
    .social-media,
    footer,
    header {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}
/* BizLink Layout Fixes */

/* ==========================================================================
   CSS Variables for consistent theming
   ========================================================================== */
   :root {
    --primary-color: #184BFF;
    --secondary-color: #FFCC00;
    --accent-color: #FF0000;
    --dark-color: #1a1f71;
    --text-color: #333;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --header-height: 80px;
    --header-height-mobile: 60px;
    --container-max-width: 1200px;
    --border-radius: 8px;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition-base: 0.3s ease-in-out;
    --z-fixed: 1030;
    --z-dropdown: 1000;
}

/* ==========================================================================
   Header Layout Fixes
   ========================================================================== */

/* Fix header positioning and z-index */
header {
    background: var(--secondary-color) !important;
    box-shadow: var(--shadow-md) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: var(--z-fixed) !important;
    height: var(--header-height) !important;
    transition: all var(--transition-base) !important;
}

.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    max-width: var(--container-max-width) !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
}

/* Fix logo positioning */
.nav-brand {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.nav-brand a {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    text-decoration: none !important;
}

.logo-img {
    height: 50px !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform var(--transition-base) !important;
}

.logo-img:hover {
    transform: scale(1.05) !important;
}

/* Fix navigation menu */
nav {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.nav-links {
    display: flex !important;
    align-items: center !important;
    gap: 2rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

.nav-links li {
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.nav-links a {
    color: var(--text-color) !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-base) !important;
    border-radius: var(--border-radius) !important;
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color) !important;
    background-color: rgba(24, 75, 255, 0.1) !important;
}

/* Fix dropdown menu */
.dropdown-toggle::after {
    content: ' ▼' !important;
    font-size: 0.7em !important;
    margin-left: 0.25rem !important;
    transition: transform var(--transition-base) !important;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg) !important;
}

.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 200px !important;
    background: var(--white) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px !important;
    padding: 0.5rem 0 !important;
    z-index: var(--z-dropdown) !important;
    flex-direction: column !important;
    border: 1px solid var(--gray-200) !important;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: flex !important;
}

.dropdown-menu li {
    height: auto !important;
}

.dropdown-menu a {
    padding: 0.5rem 1.5rem !important;
    height: auto !important;
    border-radius: 0 !important;
    color: var(--text-color) !important;
    transition: all var(--transition-base) !important;
}

.dropdown-menu a:hover {
    background-color: var(--gray-100) !important;
    color: var(--primary-color) !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    /* display: none !important; */
    background: none !important;
    border: none !important;
    font-size: 1.5rem !important;
    color: var(--text-color) !important;
    padding: 0.5rem !important;
    cursor: pointer !important;
    z-index: var(--z-fixed) !important;
    transition: all var(--transition-base) !important;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: block !important;
  }
}

.mobile-menu-btn:hover {
    color: var(--primary-color) !important;
}

/* ==========================================================================
   Main Content Layout Fixes
   ========================================================================== */

/* Fix main content positioning */
main {
    flex: 1 0 auto !important;
    margin-top: var(--header-height) !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Fix hero section */
.hero {
    position: relative;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    z-index: 1;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 0;
    background: none !important;
    overflow: hidden !important;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-image {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    background: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 900px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Remove any blue background from hero or hero-carousel */
.hero, .hero-carousel, .carousel-slide, .carousel-image {
    background: none !important;
}

.hero h1,
.hero h2 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.25 !important;
}

.hero .subtitle {
    font-family: 'Inter', sans-serif !important;
    opacity: 0.9 !important;
    margin: 1.5rem auto 2rem !important;
    font-size: 1.25rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    max-width: 600px !important;
}

/* ==========================================================================
   Button Layout Fixes
   ========================================================================== */

/* Fix button styles */
.btn,
.contact-button,
.cta-button,
.submit-button,
a.btn,
a.contact-button,
a.cta-button,
button[type=submit] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem 2rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all var(--transition-base) !important;
    min-width: 140px !important;
    height: 45px !important;
    border: none !important;
    cursor: pointer !important;
    text-align: center !important;
    background: var(--accent-color) !important;
    color: var(--white) !important;
    margin: 0.5rem auto !important;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn:hover,
.contact-button:hover,
.cta-button:hover,
.submit-button:hover,
a.btn:hover,
a.contact-button:hover,
a.cta-button:hover,
button[type=submit]:hover {
    background: #c00 !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3) !important;
}

.hero .contact-button,
.hero .cta-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 200px !important;
    height: 50px !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    transition: all var(--transition-base) !important;
    margin: 0.5rem !important;
    padding: 0 2rem !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.hero .contact-button:hover,
.hero .cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* ==========================================================================
   Contact Section Layout Fixes
   ========================================================================== */

/* Fix contact info banner */
.contact-info-banner {
    background-color: var(--gray-200) !important;
    padding: 4rem 0 !important;
    text-align: center !important;
}

.contact-info-banner h2 {
    font-size: 1.875rem !important;
    margin-bottom: 2rem !important;
    color: var(--text-color) !important;
}

.contact-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 1.2rem !important;
    margin: 2rem 0 1.5rem 0 !important;
}

.contact-details,
.contact-info,
.contact-section {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 1.5rem !important;
    width: 100% !important;
    margin: 0 auto !important;
}

.contact-details .contact-item,
.contact-info .contact-item,
.contact-section .contact-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    min-width: 0 !important;
    flex: 1 1 120px !important;
    margin: 0 !important;
    padding: 0.5rem 0 !important;
    box-sizing: border-box !important;
}

.contact-details .contact-item i,
.contact-info .contact-item i,
.contact-section .contact-item i {
    font-size: 1.125rem !important;
    margin-right: 0.5rem !important;
    color: var(--accent-color) !important;
    width: 20px !important;
    text-align: center !important;
    display: inline-block !important;
    min-width: 20px !important;
}

.contact-details .contact-item span,
.contact-info .contact-item span,
.contact-section .contact-item span {
    font-size: 1rem !important;
    word-break: break-all !important;
}

.contact-details .contact-item .contact-label,
.contact-info .contact-item .contact-label,
.contact-section .contact-item .contact-label {
    font-weight: 600 !important;
    margin-right: 0.25rem !important;
}

.contact-details .contact-item .contact-value,
.contact-info .contact-item .contact-value,
.contact-section .contact-item .contact-value {
    font-weight: 400 !important;
}

.contact-details h3 i,
.contact-info h3 i,
.contact-section h3 i {
    font-size: 1.5rem !important;
    margin-right: 0.8rem !important;
    color: var(--accent-color) !important;
    vertical-align: middle !important;
}

/* ==========================================================================
   Social Media Layout Fixes
   ========================================================================== */

/* Fix social media icons */
.social-media,
.footer-icons {
    display: flex !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    gap: var(--spacing-lg) !important;
    margin: var(--spacing-md) 0 !important;
    flex-wrap: wrap !important;
    max-width: 700px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.social-media a,
.footer-icons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: var(--gray-100) !important;
    color: var(--gray-600) !important;
    text-decoration: none !important;
    transition: all var(--transition-base) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    border: 2px solid transparent !important;
}

.social-media a i,
.footer-icons a i {
    font-size: 2.1rem !important;
    font-family: 'Font Awesome 6 Brands', 'Font Awesome 6 Free', 'FontAwesome', 'Arial', sans-serif !important;
    transition: all var(--transition-base) !important;
    z-index: 2 !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.social-media a[aria-label*="Instagram"],
.footer-icons a[aria-label*="Instagram"] {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="Facebook"],
.footer-icons a[aria-label*="Facebook"] {
    background: #1877f2 !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="LinkedIn"],
.footer-icons a[aria-label*="LinkedIn"] {
    background: #0077b5 !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="TikTok"],
.footer-icons a[aria-label*="TikTok"] {
    background: linear-gradient(45deg, #000, #25f4ee, #fe2c55) !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="X"],
.social-media a[aria-label*="Twitter"],
.footer-icons a[aria-label*="X"],
.footer-icons a[aria-label*="Twitter"] {
    background: #000 !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="phone"],
.footer-icons a[aria-label*="phone"] {
    background: #25d366 !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="email"],
.footer-icons a[aria-label*="email"] {
    background: #dc3545 !important;
    color: var(--white) !important;
}

.social-media a[aria-label*="location"],
.footer-icons a[aria-label*="location"] {
    background: #6f42c1 !important;
    color: var(--white) !important;
}

.social-media a:hover,
.footer-icons a:hover {
    transform: translateY(-3px) scale(1.1) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.social-media a:hover i,
.footer-icons a:hover i {
    animation: icon-bounce 0.6s ease-in-out !important;
}

@keyframes icon-bounce {
    0%, 100%, 20%, 50%, 80% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@media (max-width: 900px) {
  .footer-icons {
    max-width: 100% !important;
    gap: 0.7rem !important;
    justify-content: center !important;
  }
  .footer-icons a {
    width: 45px !important;
    height: 45px !important;
  }
  .footer-icons a i {
    font-size: 1.1rem !important;
  }
}
@media (max-width: 480px) {
  .footer-icons {
    gap: 0.4rem !important;
    margin: 0.7rem 0 0.7rem 0 !important;
  }
  .footer-icons a {
    width: 40px !important;
    height: 40px !important;
  }
  .footer-icons a i {
    font-size: 0.95rem !important;
  }
}

/* ==========================================================================
   Footer Layout Fixes
   ========================================================================== */

/* Fix footer */
footer {
    background: linear-gradient(135deg, #FFCC00 0%, #FFD700 100%) !important;
    color: #111 !important;
    text-align: center;
    padding: 2rem 0 1.2rem 0;
    font-size: 1.08rem;
    border-top: none !important;
}
footer p {
  margin: 0;
  color: #111 !important;
  font-weight: 600;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  footer {
    padding: 1.2rem 0 0.7rem 0;
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   Mobile Responsive Layout Fixes
   ========================================================================== */

@media (max-width: 768px) {
    /* Header adjustments */
    header {
        height: var(--header-height-mobile) !important;
    }
    
    .header-container {
        padding: 0 1rem !important;
    }
    
    .logo-img {
        height: 40px !important;
    }
    
    /* Navigation */
    .nav-links {
        display: none !important;
        position: fixed !important;
        top: var(--header-height-mobile) !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        padding: 2rem 1rem !important;
        z-index: var(--z-dropdown) !important;
        overflow-y: auto !important;
        gap: 1rem !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        margin: 0.5rem 0 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .nav-links a {
        padding: 1rem !important;
        font-size: 1.125rem !important;
        border-radius: var(--border-radius) !important;
        transition: all var(--transition-base) !important;
        width: 100% !important;
        display: block !important;
        height: auto !important;
    }
    
    .nav-links a:hover {
        background: rgba(24, 75, 255, 0.1) !important;
        color: var(--primary-color) !important;
    }
    
    /* Mobile menu button */
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Dropdown adjustments for mobile */
    .dropdown-menu {
        position: static !important;
        display: none !important;
        box-shadow: none !important;
        background: var(--gray-100) !important;
        margin-top: 0.5rem !important;
        border-radius: var(--border-radius) !important;
        border: 1px solid var(--gray-200) !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: flex !important;
    }
    
    /* Hero adjustments */
    .hero {
        margin-top: var(--header-height-mobile) !important;
        padding: 3rem 1rem 2rem !important;
        min-height: calc(100vh - var(--header-height-mobile)) !important;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 1.875rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.25 !important;
    }
    
    .hero .subtitle {
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
        font-size: 1.125rem !important;
    }

    /* Container adjustments */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Button adjustments */
    .btn,
    .contact-button,
    .cta-button {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
        min-width: 120px !important;
        border-radius: 25px !important;
        margin: 0.5rem 0 !important;
    }

    /* Social media adjustments */
    .social-media a,
    .footer-icons a {
        width: 45px !important;
        height: 45px !important;
        margin: 0 0.25rem !important;
    }

    .social-media a i,
    .footer-icons a i {
        font-size: 1.125rem !important;
    }

    /* Contact details adjustments */
    .contact-details i,
    .contact-info i {
        font-size: 1rem !important;
        margin-right: 0.4rem !important;
        width: 16px !important;
    }

    .contact-details h3 i,
    .contact-info h3 i {
        font-size: 1.3rem !important;
        margin-right: 0.6rem !important;
    }

    /* Hide footer icons on mobile except for specific sections */
    footer .footer-icons,
    footer .social-media {
        display: none !important;
    }

    /* Keep social media icons visible in specific sections */
    .contact-banner .social-media,
    .contact-info-banner .social-media,
    .get-in-touch-banner .social-media {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .contact-banner .social-media a,
    .contact-info-banner .social-media a,
    .get-in-touch-banner .social-media a {
        width: 45px !important;
        height: 45px !important;
        margin: 0 0.25rem !important;
    }

    .contact-banner .social-media a i,
    .contact-info-banner .social-media a i,
    .get-in-touch-banner .social-media a i {
        font-size: 1.1rem !important;
    }

    /* Footer adjustments */
    footer {
        padding: 1.5rem 0 !important;
        text-align: center !important;
    }
    
    footer p {
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
    }

    /* Contact buttons adjustments */
    .contact-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.7rem !important;
        margin: 1.2rem 0 1rem 0 !important;
    }
    
    .contact-button {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
    }
    
    .contact-button i {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    /* Smaller mobile adjustments */
    header {
        padding: 0.3rem 0.8rem !important;
        height: 50px !important;
    }
    
    .header-container {
        height: 50px !important;
    }
    
    .logo-img {
        height: 35px !important;
    }
    
    .hero {
        margin-top: 50px !important;
        padding: 2rem 0.8rem 1.5rem !important;
        min-height: calc(100vh - 50px) !important;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .hero .subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .nav-links {
        top: 50px !important;
        padding: 1.5rem 0.8rem !important;
    }
    
    .nav-links a {
        padding: 0.8rem !important;
        font-size: 1rem !important;
    }
    
    .container {
        padding: 0 0.8rem !important;
    }

    .btn,
    .contact-button,
    .cta-button {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
        min-width: 100px !important;
    }
    
    .social-media a,
    .footer-icons a {
        width: 40px !important;
        height: 40px !important;
        margin: 0 0.2rem !important;
    }

    .social-media a i,
    .footer-icons a i {
        font-size: 1rem !important;
    }

    .contact-details i,
    .contact-info i {
        font-size: 0.9rem !important;
        margin-right: 0.3rem !important;
        width: 14px !important;
    }

    .contact-details h3 i,
    .contact-info h3 i {
        font-size: 1.2rem !important;
        margin-right: 0.5rem !important;
    }

    footer {
        padding: 1.5rem 0.8rem !important;
    }

    .contact-buttons {
        gap: 0.4rem !important;
        margin: 0.7rem 0 0.7rem 0 !important;
    }

    .contact-button {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .contact-button i {
        font-size: 0.95rem !important;
    }

    .contact-info-banner .social-media {
        gap: var(--spacing-sm);
        margin: var(--spacing-md) 0;
    }
    
    .contact-banner .social-media a,
    .contact-info-banner .social-media a,
    .get-in-touch-banner .social-media a {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Company carousel adjustments */
    .company-logo {
        min-width: 80px !important;
        height: 50px !important;
        margin: 0 0.5rem !important;
    }
    
    .carousel-section h2 {
        font-size: 1.8rem !important;
    }
}

/* ==========================================================================
   Touch Device Optimizations
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .contact-button,
    .cta-button,
    .nav-links a {
        min-height: 44px !important;
        min-width: 44px !important;
    }
    
    .btn:active,
    .contact-button:active,
    .cta-button:active,
    .nav-links a:active {
        transform: scale(0.95) !important;
        transition: transform 0.1s !important;
    }

    .btn:hover,
    .contact-button:hover,
    .cta-button:hover,
    .nav-links a:hover {
        transform: none !important;
    }
    
    .nav-links {
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .contact-buttons,
    .mobile-menu-btn,
    .nav-links,
    .social-media,
    footer,
    header {
        display: none !important;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
        color: #000 !important;
        background: #fff !important;
    }
    
    h1, h2, h3 {
        page-break-after: avoid !important;
    }
}

/* ==========================================================================
   Homepage Company Logo Carousel Fix (2024-06) - ENLARGED CARDS
   ========================================================================== */
.bz-carousel-wrapper {
  width: 100vw !important;
  overflow: hidden !important;
  position: relative;
  background: var(--gray-100, #f8f9fa);
  padding: 2.5rem 0 2rem 0;
}
/* Carousel track rule moved to enforced version below for cleaner code */

@media (max-width: 600px) {
  .bz-carousel-wrapper {
    padding: 1.2rem 0 1rem 0 !important;
  }
  }

.thank-you-banner {
  background: #FFCC00 !important;
  color: #1a1f71 !important;
  text-align: center !important;
  padding: 3rem 1rem 2.5rem 1rem !important;
  font-family: 'Poppins', 'Inter', sans-serif !important;
  border-top: 2px solid #e9ecef;
  border-bottom: 2px solid #e9ecef;
  margin: 0 !important;
}
.thank-you-banner h2 {
  color: #184BFF !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.01em;
}
.thank-you-banner p {
  color: #1a1f71 !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  margin: 0 auto !important;
  max-width: 700px !important;
  line-height: 1.6 !important;
}
@media (max-width: 600px) {
  .thank-you-banner {
    padding: 2rem 0.5rem 1.5rem 0.5rem !important;
  }
  .thank-you-banner h2 {
    font-size: 1.3rem !important;
  }
  .thank-you-banner p {
    font-size: 1rem !important;
  }
}

/* Font Awesome Brand Icon Fixes for Kit */
.fab.fa-tiktok {
  color: #000;
}
.fab.fa-x {
  color: #000;
}

/* Universal SVG Icon Fallbacks for TikTok and X */
.icon-tiktok, .icon-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  vertical-align: middle;
}
.icon-tiktok svg, .icon-x svg {
  width: 100%;
  height: 100%;
  display: block;
}
.icon-tiktok {
  background: linear-gradient(45deg, #000, #25f4ee, #fe2c55);
  border-radius: 50%;
  padding: 0.3em;
}
.icon-x {
  background: #000;
  border-radius: 50%;
  padding: 0.3em;
}
.icon-tiktok svg path {
  fill: #fff;
}
.icon-x svg path {
  fill: #fff;
}

/* Robust fallback for SVG icons */
.icon-tiktok svg, .icon-x svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.icon-tiktok, .icon-x {
  min-width: 2.1rem !important;
  min-height: 2.1rem !important;
  max-width: 2.1rem !important;
  max-height: 2.1rem !important;
}

/* Our Services Carousel Card Styles */
/* === FINAL SERVICES BANNER SOLUTION (BLUE BG, CENTERED BLACK TEXT, RED BUTTON) === */

.services-section.services-gradient-bg {
    width: 100%;
    margin: 0;
    padding: 4rem 0;
    background: linear-gradient(90deg, #fff 0%, #f7f7f7 100%);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  
  .services-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 2rem auto;
    color: #1a1f71;
    letter-spacing: 0.5px;
  }
  
  .services-banner-container {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: none;
  }
  
  .services-banner {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    min-height: 420px;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
  }
  
  /* Print Marketing Section (Left) - Blue BG, Centered Black Text, Red Button */
  .services-featured {
    flex: 0 0 75%;
    background: rgb(255, 204, 0);
    padding: 56px 44px 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    box-sizing: border-box;
    border-radius: 0;
    transition: none;
  }
  .services-featured:hover {
    transform: none;
  }
  .static-print-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: none;
    color: inherit;
    min-height: 220px;
    box-shadow: none;
    border-radius: 0;
  }
  .services-featured .service-title {
    color: rgb(24, 75, 255);
    font-weight: 800;
    text-align: center;
  }
  .services-featured .service-desc {
    color: #111;
    text-align: center;
    font-weight: 500;
  }
  .services-featured .service-cta {
    background: rgb(255, 0, 0);
    color: #fff;
    border: 2px solid rgb(255, 0, 0);
    font-weight: 700;
    text-align: center;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  }
  .services-featured .service-cta:hover {
    background: #fff;
    color: rgb(255, 0, 0);
    border: 2px solid rgb(255, 0, 0);
  }
  
  /* Carousel Section (Right) */
  .services-carousel {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 420px;
    background: #fff;
    box-shadow: none;
    z-index: 2;
    border-radius: 0;
  }
  .carousel-heading {
    background: rgb(24, 75, 255);
    color: #fff;
    padding: 14px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-weight: 700;
    border-radius: 0;
  }
  .carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    border-radius: 0;
  }
  .carousel-indicators { display: none !important; }
  
  .slide.service-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    box-sizing: border-box;
    opacity: 0;
    transition: none;
    z-index: 1;
    border-radius: 0;
  }
  .slide.service-card.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
  }
  .slide.service-card.next {
    transform: translateX(100%);
    z-index: 1;
  }
  .slide.service-card.prev {
    transform: translateY(-100%);
    z-index: 1;
  }
  .slide.service-card:hover {
    transform: none;
  }
  .service-card-content {
    text-align: center;
    max-width: 100%;
    padding: 12px 0;
  }
  .service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 0.2px;
  }
  .service-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.3rem;
  }
  .service-cta {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-size: 1rem;
  }
  .service-cta:hover {
    transform: scale(1.08);
  }
  /* Color Variations for Carousel Slides */
  .brand-blue { background: rgb(24, 75, 255); }
  .brand-blue .service-title, .brand-blue .service-desc { color: #fff; }
  .brand-blue .service-cta { background: #fff; color: rgb(24, 75, 255); border: 2px solid rgb(24, 75, 255); font-weight: 700; text-align: center; }
  .brand-blue .service-cta:hover { background: rgb(24, 75, 255); color: #fff; border: 2px solid #fff; }
  .brand-blue .service-title:hover, .brand-blue .service-desc:hover { transform: none; }
  .brand-blue:hover { transform: none; }
  
  .brand-yellow { background: #e9ecef; }
  .brand-yellow .service-title, .brand-yellow .service-desc { color: rgb(24, 75, 255); }
  .brand-yellow .service-cta { background: #fff; color: rgb(255, 0, 0); border-radius: 0; border: 2px solid rgb(255, 0, 0); transition: background 0.2s, color 0.2s, transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .brand-yellow .service-cta:hover { background: rgb(24, 75, 255); color: #fff; border: 2px solid rgb(24, 75, 255); transform: scale(1.08); }
  .brand-yellow .service-title:hover, .brand-yellow .service-desc:hover { transform: none; }
  .brand-yellow:hover { transform: none; }
  
  .brand-white { background: #fff; }
  .brand-white .service-title { color: rgb(24, 75, 255); text-align: center; }
  .brand-white .service-desc { color: #333; text-align: center; }
  .brand-white .service-cta { background: rgb(24, 75, 255); color: #fff; border: 2px solid rgb(24, 75, 255); font-weight: 700; text-align: center; }
  .brand-white .service-cta:hover { background: #fff; color: rgb(24, 75, 255); border: 2px solid rgb(24, 75, 255); }
  .brand-white .service-title:hover, .brand-white .service-desc:hover { transform: none; }
  .brand-white:hover { transform: none; }
  
  .brand-gray { background: #111; }
  .brand-gray .service-title, .brand-gray .service-desc { color: #fff; text-align: center; }
  .brand-gray .service-cta { background: #fff; color: #111; border: 2px solid #fff; font-weight: 700; text-align: center; }
  .brand-gray .service-cta:hover { background: #111; color: #fff; border: 2px solid #fff; }
  .brand-gray:hover { transform: none; }
  
  .brand-black {
    background: rgb(255, 204, 0) !important;
  }
  .brand-black .service-title {
    color: rgb(24, 75, 255) !important;
    font-weight: 800;
    text-align: center;
  }
  .brand-black .service-desc {
    color: #111 !important;
    text-align: center;
    font-weight: 500;
  }
  .brand-black .service-cta {
    background: rgb(255, 0, 0) !important;
    color: #fff !important;
    border: 2px solid rgb(255, 0, 0) !important;
    font-weight: 700;
    text-align: center;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
  }
  .brand-black .service-cta:hover {
    background: #fff !important;
    color: rgb(255, 0, 0) !important;
    border: 2px solid rgb(255, 0, 0) !important;
  }
  .brand-black .service-title:hover,
  .brand-black .service-desc:hover {
    transform: none;
  }
  .brand-black:hover {
    transform: none;
  }
  
  @media (max-width: 900px) {
    .services-banner {
      flex-direction: row;
      min-height: unset;
      width: 100vw;
      max-width: 100vw;
      margin-left: 0;
      margin-right: 0;
      border-radius: 0;
    }
    .services-featured {
      flex: 0 0 60%;
      min-width: 60%;
      max-width: 60%;
      min-height: 160px;
      padding: 14px 6px 14px 10px;
      border-radius: 0;
      align-items: center;
    }
    .services-carousel {
      flex: 0 0 40%;
      min-width: 40%;
      max-width: 40%;
      min-height: 160px;
      padding: 14px 6px;
      border-radius: 0;
    }
    .services-heading { font-size: 1.2rem; margin-bottom: 1rem; }
    .carousel-container { min-height: 120px; }
    .slide.service-card, .static-print-banner { min-height: 120px; border-radius: 0; }
  }
  
  html, body { overflow-x: hidden; width: 100%; }
  
/* === HERO CAROUSEL & HERO SECTION FIXES === */
.hero, .hero-carousel, .carousel-slide, .carousel-image {
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: none !important;
    overflow: hidden !important;
  }
  .hero {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    z-index: 1;
  }
  .hero-carousel {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 0 !important;
  }
  .carousel-slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    opacity: 0 !important;
    transition: opacity 1s ease-in-out !important;
    z-index: 1 !important;
  }
  .carousel-slide.active {
    opacity: 1 !important;
    z-index: 2 !important;
  }
  .carousel-image {
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }
  @media (max-width: 900px), (max-width: 768px), (max-width: 480px) {
    .hero, .hero-carousel, .carousel-slide, .carousel-image {
      width: 100vw !important;
      height: 100vh !important;
      min-height: 100vh !important;
      max-height: 100vh !important;
      margin: 0 !important;
      padding: 0 !important;
    }
  }
  
  .hero-carousel .cta-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
  }
  
  /* === HERO CTA BUTTON FIXES === */
  .hero-cta {
    position: absolute !important;
    left: 50% !important;
    bottom: 2.5rem !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
    font-size: 1.25rem !important;
    padding: 1rem 2.5rem !important;
    background: rgba(0,0,0,0.7) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    min-width: 180px !important;
    text-align: center !important;
  }
  .hero-cta:hover {
    background: rgba(0,0,0,0.9) !important;
    color: #fff !important;
    transform: translateX(-50%) scale(1.05) !important;
  }
  @media (max-width: 900px) {
    .hero-cta {
      font-size: 1.1rem !important;
      padding: 0.8rem 1.8rem !important;
      min-width: 140px !important;
      bottom: 1.2rem !important;
    }
  }
  @media (max-width: 768px) {
    .hero-cta {
      font-size: 1rem !important;
      padding: 0.7rem 1.2rem !important;
      min-width: 120px !important;
      bottom: 0.8rem !important;
    }
  }
  @media (max-width: 600px), (orientation: landscape) and (max-width: 900px) {
    .hero-cta {
      font-size: 0.95rem !important;
      padding: 0.6rem 1rem !important;
      min-width: 100px !important;
      bottom: 0.5rem !important;
    }
  }
  

/* === ISOLATED COMPANY LOGO CAROUSEL (NO CONFLICTS) === */
.carousel-section {
  width: 100vw !important;
  background: #f8f9fa !important;
  margin: 0 !important;
  padding: 2rem 0 1rem 0 !important;
  overflow: hidden !important;
  position: relative !important;
}
.bz-carousel-wrapper {
  width: 100vw !important;
  overflow: hidden !important;
  margin: 0 auto !important;
  padding: 0 !important;
  position: relative !important;
  background: none !important;
}


/* === ENLARGED COMPANY LOGO CAROUSEL === */
/* === FINAL ENLARGED COMPANY LOGO CAROUSEL === */
.bz-carousel-logo {
    flex: 0 0 420px;
    width: 420px;
    height: 260px;
    margin: 0 2.5rem;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e9ecef;
    padding: 2rem;
  }
  .bz-carousel-logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
  }
  @media (max-width: 900px) {
    .bz-carousel-logo {
      flex: 0 0 220px;
      width: 220px;
      height: 120px;
      margin: 0 1rem;
      border-radius: 16px;
      padding: 0.7rem;
    }
  }
  @media (max-width: 600px) {
    .bz-carousel-logo {
      flex: 0 0 120px;
      width: 120px;
      height: 70px;
      margin: 0 0.5rem;
      border-radius: 10px;
      padding: 0.2rem;
    }
  }
  html, body, main {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
  }
  body > *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: 0 !important;
  }
  html, body, .hero, .hero-carousel, .carousel-slide, .carousel-image {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }



/* TEST BADGE for dropdown debug */
.dropdown-test-badge {
    display: inline-block;
    background: #e00;
    color: #fff;
    font-size: 0.7em;
    font-weight: bold;
    border-radius: 6px;
    padding: 2px 6px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 1px;
}

.bz-carousel-track {
    display: flex !important;
    align-items: center !important;
    animation: bz-logo-scroll-enforced 102s linear infinite !important;
    will-change: transform !important;
  }

  @keyframes bz-logo-scroll-enforced {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
/* === FIX: Remove extra space below footer and enforce no unwanted min-height === */
html, body, main {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}
body > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  min-height: 0 !important;
}

/* === ENFORCE CAROUSEL ANIMATION AND PREVENT WRAPPING === */
.bz-carousel-track {
  animation: bz-logo-scroll-enforced 102s linear infinite !important;
  will-change: transform !important;
  flex-wrap: nowrap !important;
}
@keyframes bz-logo-scroll-enforced {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
  
/* Additional mobile menu enforcement for wider screens */
@media (max-width: 900px) {
  /* Force mobile menu button to show */
  .mobile-menu-btn {
    display: block !important;
  }
  
  /* Force mobile nav to show when active */
  header .header-container nav .nav-links.active {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: var(--header-height-mobile) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999 !important;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px) !important;
    padding: var(--spacing-xl) var(--spacing-md) !important;
    gap: var(--spacing-md) !important;
    border-top: 1px solid var(--gray-200) !important;
  }
  
  /* Hide desktop nav by default */
  header .header-container nav .nav-links {
    display: none !important;
  }
}
  
/* === Print Marketing (Magazine) Page: Highly Specific Styles === */
body.page-template-print-marketing-service .magazine-modern-hero,
body.page-template-print-marketing-service .magazine-modern-banner,
body.page-template-print-marketing-service .magazine-benefits-section,
body.page-template-print-marketing-service .magazine-modern-cta {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  position: relative;
  z-index: 10;
}
body.page-template-print-marketing-service .magazine-modern-hero {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 2.5rem 1rem;
  box-shadow: 0 8px 32px rgba(24,75,255,0.06);
  border-bottom: 1px solid #f3f4f6;
}
body.page-template-print-marketing-service .magazine-modern-logo {
  width: 320px;
  max-width: 90vw;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(24,75,255,0.13));
  background: none;
  border-radius: 0;
  margin: 0 auto 1.5rem auto;
  transition: transform 0.2s;
}
body.page-template-print-marketing-service .magazine-modern-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #184BFF;
  margin-bottom: 0.7rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(24,75,255,0.08);
}
body.page-template-print-marketing-service .magazine-modern-desc {
  font-size: 1.18rem;
  color: #222;
  margin-bottom: 0;
  text-align: center;
  font-weight: 500;
}
body.page-template-print-marketing-service .magazine-modern-banner {
  background: linear-gradient(90deg, #184BFF 0%, #fff 100%);
  padding: 2.5rem 1rem 2.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e6eaf3;
}
body.page-template-print-marketing-service .magazine-modern-banner-inner {
  max-width: 700px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08);
  padding: 2.2rem 1.5rem;
  margin: 0 auto;
}
body.page-template-print-marketing-service .magazine-banner-headline {
  font-size: 1.7rem;
  font-weight: 800;
  color: #184BFF;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}
body.page-template-print-marketing-service .magazine-banner-sub {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 2.2rem;
  font-weight: 500;
}
body.page-template-print-marketing-service .magazine-modern-banner-btn {
  background: #184BFF;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9em 2.2em;
  box-shadow: 0 2px 8px rgba(24,75,255,0.10);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: inline-block;
}
body.page-template-print-marketing-service .magazine-modern-banner-btn:hover {
  background: #0d2a7a;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(24,75,255,0.18);
}
body.page-template-print-marketing-service .magazine-benefits-section {
  background: #f7fafc;
  padding: 3.5rem 0 2.5rem 0;
  display: flex;
  justify-content: center;
}
body.page-template-print-marketing-service .magazine-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.2rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
body.page-template-print-marketing-service .magazine-benefit-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(24,75,255,0.10), 0 2px 8px rgba(24,75,255,0.08);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
  border: none;
  z-index: 1;
  min-height: 320px;
}
body.page-template-print-marketing-service .magazine-benefit-card:hover {
  box-shadow: 0 16px 48px rgba(24,75,255,0.18);
  transform: translateY(-4px) scale(1.04);
}
body.page-template-print-marketing-service .benefit-icon {
  font-size: 2.8rem;
  color: #184BFF;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(24,75,255,0.10));
}
body.page-template-print-marketing-service .benefit-number {
  background: #fff !important;
  color: #184BFF !important;
  font-size: 2.1rem !important;
  font-weight: 900 !important;
  box-shadow: 0 4px 16px rgba(24,75,255,0.13) !important;
  border-radius: 50% !important;
  width: 56px !important;
  height: 56px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 1.1rem !important;
  text-shadow: 0 2px 8px rgba(24,75,255,0.13) !important;
  border: 3px solid #184BFF !important;
  transition: background 0.18s !important;
}
body.page-template-print-marketing-service .benefit-number:hover {
  background: #e6eaf3 !important;
  color: #0d2a7a !important;
}
body.page-template-print-marketing-service .benefit-title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #184BFF !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
  line-height: 1.3 !important;
}
body.page-template-print-marketing-service .benefit-desc {
  color: #222;
  font-size: 1.05rem !important;
  text-align: center !important;
  margin-bottom: 0 !important;
}
body.page-template-print-marketing-service .magazine-modern-cta {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  background: #fff !important;
  padding: 2.5rem 0 3.5rem 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.2rem !important;
}
.magazine-modern-cta-btn,
.magazine-modern-cta-link {
  background: #111 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 1.18rem !important;
  padding: 1.1em 2.5em !important;
  box-shadow: 0 2px 8px rgba(24,75,255,0.10) !important;
  border: none !important;
  transition: box-shadow 0.18s, transform 0.18s !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
}
.magazine-modern-cta-link {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  padding: 0.8em 2em !important;
}
.magazine-modern-cta-btn:hover,
.magazine-modern-cta-link:hover {
  box-shadow: 0 0 16px 0 #fff, 0 0 32px 0 #fff;
  background: #111 !important;
  color: #fff !important;
  transform: scale(1.04) !important;
}
@media (max-width: 600px) {
  .magazine-modern-cta {
    flex-direction: column !important;
    gap: 0.7rem !important;
    padding: 1.5rem 0 2rem 0 !important;
  }
  .magazine-modern-cta-btn,
  .magazine-modern-cta-link {
    width: 100% !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 900px) {
  body.page-template-print-marketing-service .magazine-modern-logo {
    width: 180px;
  }
  body.page-template-print-marketing-service .magazine-modern-title {
    font-size: 1.3rem;
  }
  body.page-template-print-marketing-service .magazine-benefits-section {
    padding: 2rem 0 1.5rem 0;
  }
  body.page-template-print-marketing-service .magazine-benefit-card {
    min-height: 220px;
    padding: 1.3rem 0.7rem 1.1rem 0.7rem;
  }
  body.page-template-print-marketing-service .magazine-modern-banner-inner {
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 600px) {
  body.page-template-print-marketing-service .magazine-modern-logo {
    width: 100px;
  }
  body.page-template-print-marketing-service .magazine-modern-title {
    font-size: 1.05rem;
  }
  body.page-template-print-marketing-service .magazine-benefits-section {
    padding: 1.2rem 0 0.7rem 0;
  }
  body.page-template-print-marketing-service .magazine-benefit-card {
    min-height: 120px;
    padding: 1rem 0.3rem 0.7rem 0.3rem;
  }
  body.page-template-print-marketing-service .benefit-number {
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
  }
  body.page-template-print-marketing-service .magazine-modern-banner-inner {
    padding: 0.7rem 0.2rem;
  }
}
  
/* === DEBUG: Print Marketing Page Test Style === */
.magazine-modern-hero {
  border: 5px solid red !important;
  background: #e0f7fa !important;
  color: #111 !important;
}
/* If this border appears, CSS is loading and selector matches. If not, check body class and file loading. */
  
/* === Print Marketing (Magazine) Page: Bulletproof Styles === */
.magazine-modern-hero {
  background: #fff !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4rem 1rem !important;
  box-shadow: 0 8px 32px rgba(24,75,255,0.06) !important;
  border-bottom: 1px solid #f3f4f6 !important;
  min-height: 300px !important;
}
.magazine-modern-logo-wrap {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 0 !important;
}
.magazine-modern-logo {
  width: 400px !important;
  max-width: 90vw !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 32px rgba(24,75,255,0.13)) !important;
  background: none !important;
  border-radius: 0 !important;
  margin: 0 auto !important;
  transition: transform 0.2s !important;
}
.magazine-modern-logo:hover {
  transform: scale(1.04) rotate(-2deg) !important;
}
.magazine-modern-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #184BFF !important;
  margin-bottom: 0.7rem !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 10px rgba(24,75,255,0.08) !important;
}
.magazine-modern-desc {
  font-size: 1.18rem !important;
  color: #222 !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  font-weight: 500 !important;
}
.magazine-modern-banner {
  background: linear-gradient(90deg, #184BFF 0%, #fff 100%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  padding: 2.5rem 1rem 2.5rem 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-bottom: 1px solid #e6eaf3 !important;
}
.magazine-modern-banner-inner {
  max-width: 700px !important;
  width: 100% !important;
  text-align: center !important;
  background: #fff !important;
  border-radius: 18px !important;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08) !important;
  padding: 2.2rem 1.5rem !important;
  margin: 0 auto !important;
}
.magazine-banner-headline {
  font-size: 1.7rem !important;
  font-weight: 800 !important;
  color: #184BFF !important;
  margin-bottom: 1.1rem !important;
  letter-spacing: 0.5px !important;
}
.magazine-banner-sub {
  font-size: 1.08rem !important;
  color: #222 !important;
  margin-bottom: 2.2rem !important;
  font-weight: 500 !important;
}
.magazine-modern-banner-btn {
  background: #184BFF !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  padding: 0.9em 2.2em !important;
  box-shadow: 0 2px 8px rgba(24,75,255,0.10) !important;
  border: none !important;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s !important;
  text-decoration: none !important;
  margin-bottom: 0.5rem !important;
  display: inline-block !important;
}
.magazine-modern-banner-btn:hover {
  background: #0d2a7a !important;
  color: #fff !important;
  transform: scale(1.04) !important;
  box-shadow: 0 6px 24px rgba(24,75,255,0.18) !important;
}
.magazine-benefits-section {
  background: #f7fafc !important;
  padding: 3.5rem 0 2.5rem 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  display: flex !important;
  justify-content: center !important;
}
.magazine-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 2.2rem !important;
  max-width: 1100px !important;
  width: 100% !important;
  margin: 0 auto !important;
}
.magazine-benefit-card {
  background: #fff !important;
  border-radius: 22px !important;
  box-shadow: 0 8px 32px rgba(24,75,255,0.10), 0 2px 8px rgba(24,75,255,0.08) !important;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  transition: box-shadow 0.22s, transform 0.22s !important;
  border: none !important;
  z-index: 1 !important;
  min-height: 320px !important;
}
.magazine-benefit-card:hover {
  box-shadow: 0 16px 48px rgba(24,75,255,0.18) !important;
  transform: translateY(-4px) scale(1.04) !important;
}
.benefit-icon {
  font-size: 2.8rem !important;
  color: #FF0000 !important;
  margin-bottom: 1.2rem !important;
  filter: drop-shadow(0 2px 8px rgba(24,75,255,0.10)) !important;
}
.benefit-title {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #184BFF !important;
  margin-bottom: 1rem !important;
  text-align: center !important;
  line-height: 1.3 !important;
}
.benefit-desc {
  color: #222 !important;
  font-size: 1.05rem !important;
  text-align: center !important;
  margin-bottom: 0 !important;
}
.magazine-modern-cta {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  background: #fff !important;
  padding: 2.5rem 0 3.5rem 0 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.2rem !important;
}
.magazine-modern-cta-btn,
.magazine-modern-cta-link {
  background: #111 !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  font-size: 1.18rem !important;
  padding: 1.1em 2.5em !important;
  box-shadow: 0 2px 8px rgba(24,75,255,0.10) !important;
  border: none !important;
  transition: box-shadow 0.18s, transform 0.18s !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
  display: inline-block !important;
}
.magazine-modern-cta-link {
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  padding: 0.8em 2em !important;
}
.magazine-modern-cta-btn:hover,
.magazine-modern-cta-link:hover {
  box-shadow: 0 0 16px 0 #fff, 0 0 32px 0 #fff;
  background: #111 !important;
  color: #fff !important;
  transform: scale(1.04) !important;
}
@media (max-width: 600px) {
  .magazine-modern-cta {
    flex-direction: column !important;
    gap: 0.7rem !important;
    padding: 1.5rem 0 2rem 0 !important;
  }
  .magazine-modern-cta-btn,
.magazine-modern-cta-link {
    width: 100% !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 900px) {
  .magazine-modern-logo {
    width: 180px !important;
  }
  .magazine-modern-title {
    font-size: 1.3rem !important;
  }
  .magazine-benefits-section {
    padding: 2rem 0 1.5rem 0 !important;
  }
  .magazine-benefit-card {
    min-height: 220px !important;
    padding: 1.3rem 0.7rem 1.1rem 0.7rem !important;
  }
  .magazine-modern-banner-inner {
    padding: 1.2rem 0.7rem !important;
  }
}
@media (max-width: 600px) {
  .magazine-modern-logo {
    width: 100px !important;
  }
  .magazine-modern-title {
    font-size: 1.05rem !important;
  }
  .magazine-benefits-section {
    padding: 1.2rem 0 0.7rem 0 !important;
  }
  .magazine-benefit-card {
    min-height: 120px !important;
    padding: 1rem 0.3rem 0.7rem 0.3rem !important;
  }
  .benefit-number {
    font-size: 1.1rem !important;
    width: 36px !important;
    height: 36px !important;
  }
  .magazine-modern-banner-inner {
    padding: 0.7rem 0.2rem !important;
  }
}
  
/* === Impactful Print CTA Section === */
.impactful-print-cta {
  background: linear-gradient(90deg, #184BFF 0%, #3CA1FF 100%) !important;
  color: #fff !important;
  padding: 3.5rem 0 3rem 0 !important;
  text-align: center !important;
}
.impactful-print-cta-inner {
  max-width: 700px !important;
  margin: 0 auto !important;
}
.impactful-print-cta-title {
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  margin-bottom: 1.2rem !important;
  color: #fff !important;
  letter-spacing: 0.5px !important;
  line-height: 1.1 !important;
}
@media (max-width: 900px) {
  .impactful-print-cta-title {
    font-size: 2.2rem !important;
  }
}
@media (max-width: 600px) {
  .impactful-print-cta-title {
    font-size: 1.3rem !important;
  }
}
.impactful-print-cta-desc {
  font-size: 1.05rem !important;
  color: #fff !important;
  margin-bottom: 2.2rem !important;
  font-weight: 400 !important;
  opacity: 0.85 !important;
}
.text-red {
  color: #FF0000 !important;
  font-weight: 900 !important;
  display: inline-block !important;
  animation: standout-pulse 1.2s cubic-bezier(0.4,0,0.6,1) infinite alternate;
}
@keyframes standout-pulse {
  0% { transform: scale(1); opacity: 1; }
  60% { transform: scale(1.18); opacity: 0.92; }
  100% { transform: scale(1); opacity: 1; }
}
  
/* === Print Marketing: ENFORCED benefit number style === */
/* Added html tag to increase specificity even further */
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card .benefit-number,
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card .benefit-number:before,
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card .benefit-number:after,
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card .benefit-number * {
  /* Layout */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  
  /* Dimensions */
  width: 76px !important;
  height: 76px !important;
  min-width: 76px !important;
  min-height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
  margin-bottom: 1.3rem !important;
  padding: 0 !important;
  line-height: 1 !important;
  
  /* Visual Style */
  background: #fff !important;
  color: #184BFF !important;
  border: 5px solid #184BFF !important;
  border-radius: 50% !important;
  font-size: 2.7rem !important;
  font-family: 'Poppins', 'Inter', Arial, sans-serif !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 12px rgba(24,75,255,0.13) !important;
  letter-spacing: 1px !important;
  box-shadow: 0 8px 32px rgba(24,75,255,0.18), 0 2px 8px rgba(24,75,255,0.13) !important;
  
  /* Behavior */
  transition: all 0.22s ease !important;
  user-select: none !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Hover state with extra specificity */
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card:hover .benefit-number,
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card:focus-within .benefit-number,
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card:active .benefit-number {
  background: #e6eaf3 !important;
  color: #0d2a7a !important;
  box-shadow: 0 12px 36px 2px rgba(24,75,255,0.2), 0 4px 16px rgba(24,75,255,0.13) !important;
}

/* Nuclear option to prevent any child element interference */
html body.page-template-print-marketing-service .magazine-benefits-grid .magazine-benefit-card .benefit-number * {
  all: unset !important;
  display: inherit !important;
  align-items: inherit !important;
  justify-content: inherit !important;
  width: 100% !important;
  height: 100% !important;
}

.magazine-hero-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #184BFF;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(24,75,255,0.08);
}
@media (max-width: 900px) {
  .magazine-hero-heading {
    font-size: 1.5rem;
    margin-top: 1.2rem;
  }
}
@media (max-width: 600px) {
  .magazine-hero-heading {
    font-size: 1.1rem;
    margin-top: 0.7rem;
  }
}

.magazine-modern-hero {
  background: linear-gradient(135deg, #FFCC00 0%, #FFD700 100%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  padding: 0 1rem !important;
  box-shadow: 0 8px 32px rgba(24,75,255,0.06) !important;
  border-bottom: 1px solid #f3f4f6 !important;
  overflow: hidden !important;
}
@media (min-width: 601px) {
  .magazine-modern-hero {
    min-height: 100vh !important;
  }
}
@media (max-width: 600px) {
  .magazine-modern-hero {
    min-height: 40vh !important;
  }
  .magazine-hero-heading {
    font-size: 1.1rem !important;
    margin-top: 0.7rem !important;
  }
  .magazine-modern-logo {
    width: 120px !important;
  }
}
.hero-overlay {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.45) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.magazine-modern-logo-wrap,
.magazine-hero-heading {
  position: relative !important;
  z-index: 2 !important;
}
.magazine-hero-heading {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
  text-align: center !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.18) !important;
}
.magazine-modern-logo {
  width: 400px !important;
  max-width: 90vw !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  filter: drop-shadow(0 8px 32px rgba(24,75,255,0.13)) !important;
  background: none !important;
  border-radius: 0 !important;
  margin: 0 auto !important;
  transition: transform 0.2s !important;
}
@media (max-width: 900px) {
  .magazine-hero-heading {
    font-size: 1.5rem !important;
    margin-top: 1.2rem !important;
  }
  .magazine-modern-logo {
    width: 220px !important;
  }
}
@media (max-width: 600px) {
  .magazine-hero-heading {
    font-size: 1.1rem !important;
    margin-top: 0.7rem !important;
  }
  .magazine-modern-logo {
    width: 120px !important;
  }
}

@media (max-width: 600px) {
  .magazine-modern-hero {
    min-height: 45vh !important;
  }
}

.magazine-modern-hero, .magazine-modern-hero * {
  border: none !important;
}
.benefit-title {
  color: #184BFF !important;
}

body.page-template-print-marketing-service .benefit-title,
body.page-template-print-marketing-service .benefit-title {
  color: #184BFF !important;
}

html body .magazine-benefits-section .magazine-benefits-grid .magazine-benefit-card .benefit-title {
  color: #184BFF !important;
}

.usher-section {
  background: #fff !important;
  padding: 1.2rem 0 0 0 !important;
  text-align: center !important;
  border-bottom: 1px solid #f3f4f6 !important;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  margin-bottom: 0 !important;
}
.usher-flex {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  min-height: 100vh;
  width: 100%;
}
.usher-text {
  flex: 0 1 320px;
  max-width: 340px;
  min-width: 220px;
  text-align: left !important;
  padding: 2rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,75,255,0.04);
  height: 100%;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
  will-change: transform, box-shadow;
}
.usher-text:hover, .usher-text:active, .usher-text:focus {
  transform: none !important;
  box-shadow: none !important;
  z-index: auto !important;
}
.usher-title {
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #184BFF !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.5px !important;
}
.usher-desc {
  text-align: left !important;
  font-size: 1.08rem !important;
}
.usher-image-wrap {
  flex: 1 1 65%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
  height: 100%;
}
.usher-image {
  width: 100%;
  max-width: 900px;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.10);
  display: block;
}
@media (max-width: 900px) {
  .usher-section {
    min-height: unset;
    padding: 0.5rem 0 1.2rem 0 !important;
    display: block;
  }
  .usher-flex {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
    min-height: unset;
    align-items: center;
    width: 100%;
  }
  .usher-text, .usher-title, .usher-desc {
    text-align: center !important;
    max-width: 100%;
    padding: 1.2rem 0 0.5rem 0;
    box-shadow: none;
    background: transparent;
    height: auto;
  }
  .usher-image-wrap {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: stretch;
    height: auto;
  }
  .usher-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    min-height: 220px;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .usher-flex {
    padding: 0 0.2rem;
  }
  .usher-image {
    min-height: 180px;
  }
}

.main-heading-section {
  padding: 0.1rem 0 0.1rem 0 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.magazine-benefits-section {
  padding: 1.5rem 0 2.5rem 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  .usher-section {
    min-height: unset;
    padding: 0.5rem 0 0 0 !important;
    display: block;
  }
  .main-heading-section {
    padding: 0.3rem 0 0.3rem 0 !important;
  }
  .magazine-benefits-section {
    padding: 1rem 0 1.5rem 0 !important;
  }
}

@media (min-width: 901px) {
  .usher-section {
    margin-bottom: 32px !important;
  }
}

body.page-template-print-marketing-service .magazine-modern-cta-btn,
body.page-template-print-marketing-service a.magazine-modern-cta-btn,
body.page-template-print-marketing-service a.magazine-modern-cta-btn[href*="/contact"] {
  background: #111 !important;
  color: #fff !important;
  border: none !important;
}

a.magazine-modern-cta-btn[href="https://bizlinkads.co.ke/contact"] {
  background: #111 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: none !important;
}
/* === DIGITAL BOTTOM BANNER CTA BUTTON FIX === */
.digital-bottom-banner .cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.2rem !important;
  min-width: 180px !important;
  height: auto !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  background: #000 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
  margin: 1.2rem auto 0 auto !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s !important;
  overflow: visible !important;
}
.digital-bottom-banner .cta-button:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  background: #222 !important;
  color: #fff !important;
  transform: scale(1.04) !important;
}
@media (max-width: 600px) {
  .digital-bottom-banner .cta-button {
    padding: 0.8rem 1.2rem !important;
    min-width: 120px !important;
    font-size: 1rem !important;
    border-radius: 22px !important;
  }
}
/* === UNIVERSAL MODERN SERVICE/PROCESS CARDS (2x2 GRID) === */
.digital-marketing-cards, .digital-process-cards, .universal-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  justify-items: center;
  align-items: stretch;
  margin: 3rem 0 4rem 0;
}
@media (max-width: 900px) {
  .digital-marketing-cards, .digital-process-cards, .universal-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .digital-marketing-cards, .digital-process-cards, .universal-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin: 2rem 0 2.5rem 0;
  }
}
.dm-card, .dp-card, .universal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08), 0 1.5px 8px rgba(24,75,255,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e3e9f7;
}
.dm-card:hover, .dp-card:hover, .universal-card:hover {
  box-shadow: 0 8px 32px rgba(24,75,255,0.16), 0 2px 12px rgba(24,75,255,0.10);
  transform: translateY(-4px) scale(1.03);
}
.dm-card-icon, .dp-card-icon, .universal-card-icon {
  font-size: 2.7rem;
  color: #184BFF;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-card-title, .dp-card-title, .universal-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.dm-card-desc, .dp-card-desc, .universal-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .dm-card, .dp-card, .universal-card {
    max-width: 100%;
    min-width: 180px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .dm-card, .dp-card, .universal-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .dm-card-icon, .dp-card-icon, .universal-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
  .dm-card-title, .dp-card-title, .universal-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .dm-card-desc, .dp-card-desc, .universal-card-desc {
    font-size: 0.98rem;
  }
}
/* === UNIVERSAL SECTION HEADINGS === */
.process-heading-section, .section-heading, .service-heading, .benefits-heading {
  text-align: center;
  margin: 4rem 0 3rem 0;
  padding: 0 1rem;
}
.process-heading-section h2, .section-heading h2, .service-heading h2, .benefits-heading h2 {
  color: #184BFF;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.process-heading-section p, .section-heading p, .service-heading p, .benefits-heading p {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .process-heading-section, .section-heading, .service-heading, .benefits-heading {
    margin: 3rem 0 2rem 0;
  }
  .process-heading-section h2, .section-heading h2, .service-heading h2, .benefits-heading h2 {
    font-size: 2rem;
  }
  .process-heading-section p, .section-heading p, .service-heading p, .benefits-heading p {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .process-heading-section, .section-heading, .service-heading, .benefits-heading {
    margin: 2rem 0 1.5rem 0;
  }
  .process-heading-section h2, .section-heading h2, .service-heading h2, .benefits-heading h2 {
    font-size: 1.8rem;
  }
  .process-heading-section p, .section-heading p, .service-heading p, .benefits-heading p {
    font-size: 1rem;
  }
}

/* === DIGITAL MARKETING PAGE SPECIFIC STYLES === */
.digital-marketing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  justify-items: center;
  align-items: stretch;
  margin: 3rem 0 4rem 0;
}
@media (max-width: 900px) {
  .digital-marketing-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .digital-marketing-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin: 2rem 0 2.5rem 0;
  }
}
.dm-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08), 0 1.5px 8px rgba(24,75,255,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e3e9f7;
}
.dm-card:hover {
  box-shadow: 0 8px 32px rgba(24,75,255,0.16), 0 2px 12px rgba(24,75,255,0.10);
  transform: translateY(-4px) scale(1.03);
}
.dm-card-icon {
  font-size: 2.7rem;
  color: #184BFF;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dm-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.dm-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .dm-card {
    max-width: 100%;
    min-width: 180px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .dm-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .dm-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
  .dm-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .dm-card-desc {
    font-size: 0.98rem;
  }
}

/* === DIGITAL MARKETING PROCESS CARDS === */
.digital-process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  justify-items: center;
  align-items: stretch;
  margin: 3rem 0 4rem 0;
}
@media (max-width: 900px) {
  .digital-process-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .digital-process-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin: 2rem 0 2.5rem 0;
  }
}
.dp-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08), 0 1.5px 8px rgba(24,75,255,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e3e9f7;
}
.dp-card:hover {
  box-shadow: 0 8px 32px rgba(24,75,255,0.16), 0 2px 12px rgba(24,75,255,0.10);
  transform: translateY(-4px) scale(1.03);
}
.dp-card-icon {
  font-size: 2.7rem;
  color: #184BFF;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dp-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.dp-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .dp-card {
    max-width: 100%;
    min-width: 180px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .dp-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .dp-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
  .dp-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .dp-card-desc {
    font-size: 0.98rem;
  }
}

/* === CONTENT CREATION PAGE SPECIFIC STYLES === */
.content-creation-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  justify-items: center;
  align-items: stretch;
  margin: 3rem 0 4rem 0;
}
@media (max-width: 900px) {
  .content-creation-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .content-creation-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin: 2rem 0 2.5rem 0;
  }
}
.cc-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08), 0 1.5px 8px rgba(24,75,255,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e3e9f7;
}
.cc-card:hover {
  box-shadow: 0 8px 32px rgba(24,75,255,0.16), 0 2px 12px rgba(24,75,255,0.10);
  transform: translateY(-4px) scale(1.03);
}
.cc-card-icon {
  font-size: 2.7rem;
  color: #184BFF;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.cc-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .cc-card {
    max-width: 100%;
    min-width: 180px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .cc-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
  .cc-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
  .cc-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .cc-card-desc {
    font-size: 0.98rem;
  }
}

/* === GLOBAL SERVICE PAGE STYLES === */

/* === ALL SERVICE CARDS (2x2 Grid) === */
.digital-marketing-cards, .digital-process-cards, .content-creation-cards, .content-process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
  justify-items: center;
  align-items: stretch;
  margin: 3rem 0 4rem 0;
}
@media (max-width: 900px) {
  .digital-marketing-cards, .digital-process-cards, .content-creation-cards, .content-process-cards {
    gap: 1.2rem;
  }
}
@media (max-width: 700px) {
  .digital-marketing-cards, .digital-process-cards, .content-creation-cards, .content-process-cards {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    margin: 2rem 0 2.5rem 0;
  }
}

/* === ALL CARD STYLES === */
.dm-card, .dp-card, .cc-card, .cp-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.08), 0 1.5px 8px rgba(24,75,255,0.04);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #e3e9f7;
}
.dm-card:hover, .dp-card:hover, .cc-card:hover, .cp-card:hover {
  box-shadow: 0 8px 32px rgba(24,75,255,0.16), 0 2px 12px rgba(24,75,255,0.10);
  transform: translateY(-4px) scale(1.03);
}
@media (max-width: 900px) {
  .dm-card, .dp-card, .cc-card, .cp-card {
    max-width: 100%;
    min-width: 180px;
    padding: 1.5rem 1rem 1.5rem 1rem;
  }
}
@media (max-width: 700px) {
  .dm-card, .dp-card, .cc-card, .cp-card {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
  }
}

/* === ALL CARD ICONS === */
.dm-card-icon, .dp-card-icon, .cc-card-icon, .cp-card-icon {
  font-size: 2.7rem;
  color: #184BFF;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .dm-card-icon, .dp-card-icon, .cc-card-icon, .cp-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
  }
}

/* === ALL CARD TITLES === */
.dm-card-title, .dp-card-title, .cc-card-title, .cp-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 700px) {
  .dm-card-title, .dp-card-title, .cc-card-title, .cp-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
}

/* === ALL CARD DESCRIPTIONS === */
.dm-card-desc, .dp-card-desc, .cc-card-desc, .cp-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .dm-card-desc, .dp-card-desc, .cc-card-desc, .cp-card-desc {
    font-size: 0.98rem;
  }
}

/* === ALL BOTTOM BANNER BUTTONS === */
.digital-bottom-banner .cta-button, 
.content-bottom-banner .cta-button,
.social-bottom-banner .cta-button,
.webdev-bottom-banner .cta-button,
.seo-bottom-banner .cta-button,
.print-bottom-banner .cta-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.2rem !important;
  min-width: 180px !important;
  height: auto !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  border-radius: 30px !important;
  background: #000 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10) !important;
  margin: 1.2rem auto 0 auto !important;
  text-align: center !important;
  white-space: nowrap !important;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s, transform 0.2s !important;
  overflow: visible !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.digital-bottom-banner .cta-button:hover, 
.content-bottom-banner .cta-button:hover,
.social-bottom-banner .cta-button:hover,
.webdev-bottom-banner .cta-button:hover,
.seo-bottom-banner .cta-button:hover,
.print-bottom-banner .cta-button:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.18) !important;
  background: #222 !important;
  color: #fff !important;
  transform: scale(1.04) !important;
  text-decoration: none !important;
}
@media (max-width: 600px) {
  .digital-bottom-banner .cta-button, 
  .content-bottom-banner .cta-button,
  .social-bottom-banner .cta-button,
  .webdev-bottom-banner .cta-button,
  .seo-bottom-banner .cta-button,
  .print-bottom-banner .cta-button {
    padding: 0.8rem 1.2rem !important;
    min-width: 120px !important;
    font-size: 1rem !important;
    border-radius: 22px !important;
  }
}

/* === ALL BOTTOM BANNERS === */
.digital-bottom-banner, 
.content-bottom-banner,
.social-bottom-banner,
.webdev-bottom-banner,
.seo-bottom-banner,
.print-bottom-banner {
  background: linear-gradient(135deg, #184BFF 0%, #0d2a7a 100%) !important;
  color: #fff !important;
  text-align: center;
  padding: 3rem 1rem 2.5rem 1rem;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(24,75,255,0.10);
}
.digital-bottom-banner h2, 
.content-bottom-banner h2,
.social-bottom-banner h2,
.webdev-bottom-banner h2,
.seo-bottom-banner h2,
.print-bottom-banner h2 {
  color: #fff !important;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.digital-bottom-banner p, 
.content-bottom-banner p,
.social-bottom-banner p,
.webdev-bottom-banner p,
.seo-bottom-banner p,
.print-bottom-banner p {
  color: #fff !important;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* === ALL SECTION HEADINGS === */
.process-heading-section, .section-heading, .service-heading, .benefits-heading {
  text-align: center;
  margin: 4rem 0 3rem 0;
  padding: 0 1rem;
}
.process-heading-section h2, .section-heading h2, .service-heading h2, .benefits-heading h2 {
  color: #184BFF;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.process-heading-section p, .section-heading p, .service-heading p, .benefits-heading p {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .process-heading-section, .section-heading, .service-heading, .benefits-heading {
    margin: 3rem 0 2rem 0;
  }
  .process-heading-section h2, .section-heading h2, .service-heading h2, .benefits-heading h2 {
    font-size: 2rem;
  }
  .process-heading-section p, .section-heading p, .service-heading p, .benefits-heading p {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .process-heading-section, .section-heading, .service-heading, .benefits-heading {
    margin: 2rem 0 1.5rem 0;
  }
  .process-heading-section h2, .section-heading h2, .service-heading h2, .benefits-heading h2 {
    font-size: 1.8rem;
  }
  .process-heading-section p, .section-heading p, .service-heading p, .benefits-heading p {
    font-size: 1rem;
  }
}

/* === PROCESS CYCLE ELEMENTS === */
.cycle-step {
  position: relative;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #184BFF, #0d2a7a);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(24, 75, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 2;
  cursor: pointer;
  padding: 1rem;
}
.cycle-step:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(24, 75, 255, 0.4);
}
.cycle-step .step-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  background: #FF0000;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}
.cycle-step .step-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
  word-wrap: break-word;
  max-width: 140px;
}
@media (max-width: 768px) {
  .cycle-step {
    width: 120px;
    height: 120px;
  }
  .cycle-step .step-number {
    font-size: 2rem;
    width: 45px;
    height: 45px;
  }
  .cycle-step .step-title {
    font-size: 0.9rem;
    max-width: 100px;
  }
}

/* === SOCIAL MEDIA CARDS === */
.social-media-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 900px) {
  .social-media-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .social-media-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.sm-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
}
.sm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.sm-card-icon {
  width: 60px;
  height: 60px;
  background: #184BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #fff;
  font-size: 1.5rem;
}
.sm-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.sm-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .sm-card {
    padding: 1.5rem;
  }
}
@media (max-width: 700px) {
  .sm-card {
    padding: 1.2rem;
  }
  .sm-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .sm-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .sm-card-desc {
    font-size: 0.98rem;
  }
}

/* === SOCIAL MEDIA PROCESS CARDS === */
.social-process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 900px) {
  .social-process-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .social-process-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.sp-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
}
.sp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.sp-card-icon {
  width: 60px;
  height: 60px;
  background: #184BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #fff;
  font-size: 1.5rem;
}
.sp-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.sp-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .sp-card {
    padding: 1.5rem;
  }
}
@media (max-width: 700px) {
  .sp-card {
    padding: 1.2rem;
  }
  .sp-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .sp-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .sp-card-desc {
    font-size: 0.98rem;
  }
}

/* === WEB DEVELOPMENT CARDS === */
.webdev-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 900px) {
  .webdev-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .webdev-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.wd-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
}
.wd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.wd-card-icon {
  width: 60px;
  height: 60px;
  background: #184BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #fff;
  font-size: 1.5rem;
}
.wd-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.wd-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .wd-card {
    padding: 1.5rem;
  }
}
@media (max-width: 700px) {
  .wd-card {
    padding: 1.2rem;
  }
  .wd-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .wd-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .wd-card-desc {
    font-size: 0.98rem;
  }
}

/* === WEB DEVELOPMENT PROCESS CARDS === */
.webdev-process-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}
@media (max-width: 900px) {
  .webdev-process-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 700px) {
  .webdev-process-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.wdp-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-align: center;
}
.wdp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.wdp-card-icon {
  width: 60px;
  height: 60px;
  background: #184BFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: #fff;
  font-size: 1.5rem;
}
.wdp-card-title {
  color: #184BFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  font-family: 'Poppins', sans-serif;
}
.wdp-card-desc {
  color: #222;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .wdp-card {
    padding: 1.5rem;
  }
}
@media (max-width: 700px) {
  .wdp-card {
    padding: 1.2rem;
  }
  .wdp-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .wdp-card-title {
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
  }
  .wdp-card-desc {
    font-size: 0.98rem;
  }
}

/* === INDUSTRY BLOG PAGES === */
.industry-hero {
    position: relative;
    background: linear-gradient(135deg, #FFCC00 0%, #FFD700 100%) !important;
    min-height: 60vh;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(24,75,255,0.06) !important;
    border-bottom: 1px solid #f3f4f6 !important;
    overflow: hidden;
}
.industry-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1;
    pointer-events: none;
}
.industry-hero-logo {
    width: 200px;
    max-width: 60vw;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(24,75,255,0.13));
    background: none;
    border-radius: 0;
    margin: 0 auto 1.5rem auto;
    position: relative;
    z-index: 2;
}
.industry-hero-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.industry-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    opacity: 0.95;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 900px) {
    .industry-hero {
        min-height: 50vh;
    }
    .industry-hero-logo {
        width: 120px;
        margin-bottom: 1rem;
    }
    .industry-hero-heading {
        font-size: 2rem;
    }
    .industry-hero-subtitle {
        font-size: 1.1rem;
    }
}
@media (max-width: 600px) {
    .industry-hero {
        min-height: 40vh;
    }
    .industry-hero-logo {
        width: 80px;
    }
    .industry-hero-heading {
        font-size: 1.5rem;
    }
    .industry-hero-subtitle {
        font-size: 1rem;
    }
}

/* BLOG CONTENT SECTION */
.blog-content {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}
.blog-intro h2 {
    font-size: 2.5rem;
    color: #184BFF;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}
.blog-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* BLOG POSTS GRID */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 900px) {
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}
@media (max-width: 600px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* BLOG POST CARD */
.blog-post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.blog-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}
.blog-post-content {
    padding: 1.5rem;
}
.blog-post-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.blog-post-title {
    color: #184BFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}
.blog-post-excerpt {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.blog-post-readmore {
    display: inline-block;
    background: #184BFF;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.blog-post-readmore:hover {
    background: #0d2a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24,75,255,0.3);
}

/* NO POSTS MESSAGE */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.no-posts h3 {
    color: #184BFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}
.no-posts p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .blog-container {
        padding: 0 1rem;
    }
    .blog-intro h2 {
        font-size: 2rem;
    }
    .blog-intro p {
        font-size: 1.1rem;
    }
    .blog-post-content {
        padding: 1.2rem;
    }
    .blog-post-title {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Industry Category Pages - Global Styling
   ========================================================================== */

/* Hero Section for Category Pages - Target all category pages */
body.category .hero,
body.category-agriculture .hero,
body.category-energy .hero,
body.category-healthcare .hero,
body.category-finance .hero,
body.category-construction .hero,
body.category-manufacturing .hero,
body.category-technology .hero,
body.category-trade .hero,
body.category-real-estate .hero,
body.category-retail .hero,
.category .hero,
.category-agriculture .hero,
.category-energy .hero,
.category-healthcare .hero,
.category-finance .hero,
.category-construction .hero,
.category-manufacturing .hero,
.category-technology .hero,
.category-trade .hero,
.category-real-estate .hero,
.category-retail .hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e6b800 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body.category .hero::before,
body.category-agriculture .hero::before,
body.category-energy .hero::before,
body.category-healthcare .hero::before,
body.category-finance .hero::before,
body.category-construction .hero::before,
body.category-manufacturing .hero::before,
body.category-technology .hero::before,
body.category-trade .hero::before,
body.category-real-estate .hero::before,
body.category-retail .hero::before,
.category .hero::before,
.category-agriculture .hero::before,
.category-energy .hero::before,
.category-healthcare .hero::before,
.category-finance .hero::before,
.category-construction .hero::before,
.category-manufacturing .hero::before,
.category-technology .hero::before,
.category-trade .hero::before,
.category-real-estate .hero::before,
.category-retail .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

body.category .hero h1,
body.category-agriculture .hero h1,
body.category-energy .hero h1,
body.category-healthcare .hero h1,
body.category-finance .hero h1,
body.category-construction .hero h1,
body.category-manufacturing .hero h1,
body.category-technology .hero h1,
body.category-trade .hero h1,
body.category-real-estate .hero h1,
body.category-retail .hero h1,
.category .hero h1,
.category-agriculture .hero h1,
.category-energy .hero h1,
.category-healthcare .hero h1,
.category-finance .hero h1,
.category-construction .hero h1,
.category-manufacturing .hero h1,
.category-technology .hero h1,
.category-trade .hero h1,
.category-real-estate .hero h1,
.category-retail .hero h1 {
    color: var(--text-color);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

body.category .hero .subtitle,
body.category-agriculture .hero .subtitle,
body.category-energy .hero .subtitle,
body.category-healthcare .hero .subtitle,
body.category-finance .hero .subtitle,
body.category-construction .hero .subtitle,
body.category-manufacturing .hero .subtitle,
body.category-technology .hero .subtitle,
body.category-trade .hero .subtitle,
body.category-real-estate .hero .subtitle,
body.category-retail .hero .subtitle,
.category .hero .subtitle,
.category-agriculture .hero .subtitle,
.category-energy .hero .subtitle,
.category-healthcare .hero .subtitle,
.category-finance .hero .subtitle,
.category-construction .hero .subtitle,
.category-manufacturing .hero .subtitle,
.category-technology .hero .subtitle,
.category-trade .hero .subtitle,
.category-real-estate .hero .subtitle,
.category-retail .hero .subtitle {
    color: var(--text-color);
    font-size: var(--font-size-lg);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Blog Grid Layout */
.blog-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Ensure main content is not hidden by fixed header */
body.category main,
body.category-agriculture main,
body.category-energy main,
body.category-healthcare main,
body.category-finance main,
body.category-construction main,
body.category-manufacturing main,
body.category-technology main,
body.category-trade main,
body.category-real-estate main,
body.category-retail main {
    margin-top: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

/* Blog Card Styling */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-thumbnail {
    transform: scale(1.05);
}

.blog-card-content {
    padding: var(--spacing-lg);
}

.blog-card-content h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: 600;
    line-height: var(--line-height-tight);
}

.blog-card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

.blog-card-content h3 a:hover {
    color: var(--primary-color);
}

.blog-card .date {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.blog-card .description {
    color: var(--text-color);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    margin-bottom: var(--spacing-lg);
}

.blog-card .read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.blog-card .read-more:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: var(--spacing-3xl);
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-xl) 0;
}

.no-posts p {
    color: var(--text-light);
    font-size: var(--font-size-lg);
    margin: 0;
}

/* Pagination Styling */
.blog-grid + div {
    margin-top: var(--spacing-2xl);
}

.blog-grid + div .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 var(--spacing-xs);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
}

.blog-grid + div .page-numbers:hover,
.blog-grid + div .page-numbers.current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Responsive Design for Category Pages */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--spacing-lg);
    }
    
    body.category .hero h1,
    body.category-agriculture .hero h1,
    body.category-energy .hero h1,
    body.category-healthcare .hero h1,
    body.category-finance .hero h1,
    body.category-construction .hero h1,
    body.category-manufacturing .hero h1,
    body.category-technology .hero h1,
    body.category-trade .hero h1,
    body.category-real-estate .hero h1,
    body.category-retail .hero h1,
    .category .hero h1,
    .category-agriculture .hero h1,
    .category-energy .hero h1,
    .category-healthcare .hero h1,
    .category-finance .hero h1,
    .category-construction .hero h1,
    .category-manufacturing .hero h1,
    .category-technology .hero h1,
    .category-trade .hero h1,
    .category-real-estate .hero h1,
    .category-retail .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    body.category .hero .subtitle,
    body.category-agriculture .hero .subtitle,
    body.category-energy .hero .subtitle,
    body.category-healthcare .hero .subtitle,
    body.category-finance .hero .subtitle,
    body.category-construction .hero .subtitle,
    body.category-manufacturing .hero .subtitle,
    body.category-technology .hero .subtitle,
    body.category-trade .hero .subtitle,
    body.category-real-estate .hero .subtitle,
    body.category-retail .hero .subtitle,
    .category .hero .subtitle,
    .category-agriculture .hero .subtitle,
    .category-energy .hero .subtitle,
    .category-healthcare .hero .subtitle,
    .category-finance .hero .subtitle,
    .category-construction .hero .subtitle,
    .category-manufacturing .hero .subtitle,
    .category-technology .hero .subtitle,
    .category-trade .hero .subtitle,
    .category-real-estate .hero .subtitle,
    .category-retail .hero .subtitle {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    body.category .hero,
    body.category-agriculture .hero,
    body.category-energy .hero,
    body.category-healthcare .hero,
    body.category-finance .hero,
    body.category-construction .hero,
    body.category-manufacturing .hero,
    body.category-technology .hero,
    body.category-trade .hero,
    body.category-real-estate .hero,
    body.category-retail .hero,
    .category .hero,
    .category-agriculture .hero,
    .category-energy .hero,
    .category-healthcare .hero,
    .category-finance .hero,
    .category-construction .hero,
    .category-manufacturing .hero,
    .category-technology .hero,
    .category-trade .hero,
    .category-real-estate .hero,
    .category-retail .hero {
        padding: 100px 0 60px;
        min-height: 250px;
    }
    
    body.category .hero h1,
    body.category-agriculture .hero h1,
    body.category-energy .hero h1,
    body.category-healthcare .hero h1,
    body.category-finance .hero h1,
    body.category-construction .hero h1,
    body.category-manufacturing .hero h1,
    body.category-technology .hero h1,
    body.category-trade .hero h1,
    body.category-real-estate .hero h1,
    body.category-retail .hero h1,
    .category .hero h1,
    .category-agriculture .hero h1,
    .category-energy .hero h1,
    .category-healthcare .hero h1,
    .category-finance .hero h1,
    .category-construction .hero h1,
    .category-manufacturing .hero h1,
    .category-technology .hero h1,
    .category-trade .hero h1,
    .category-real-estate .hero h1,
    .category-retail .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .blog-card-content {
        padding: var(--spacing-md);
    }
    
    .blog-card-content h3 {
        font-size: var(--font-size-lg);
    }
}
/* ==========================================================================
   UNIVERSAL BLOG & CATEGORY PAGES - MODERN DESIGN SYSTEM
   ========================================================================== */

/* ==========================================================================
   MODERN HERO BANNER SYSTEM
   ========================================================================== */

/* Universal Hero Banner - Works on any blog/category page */
.hero,
body.category .hero,
body.category-agriculture .hero,
body.category-energy .hero,
body.category-healthcare .hero,
body.category-finance .hero,
body.category-construction .hero,
body.category-manufacturing .hero,
body.category-technology .hero,
body.category-trade .hero,
body.category-real-estate .hero,
body.category-retail .hero,
body.archive .hero,
body.search .hero,
body.blog .hero {
    background: linear-gradient(135deg, #FFCC00 0%, #e6b800 100%) !important;
    padding: 120px 0 80px !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 0 !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Animated gradient background */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Modern overlay with subtle pattern */
.hero::before,
body.category .hero::before,
body.category-agriculture .hero::before,
body.category-energy .hero::before,
body.category-healthcare .hero::before,
body.category-finance .hero::before,
body.category-construction .hero::before,
body.category-manufacturing .hero::before,
body.category-technology .hero::before,
body.category-trade .hero::before,
body.category-real-estate .hero::before,
body.category-retail .hero::before,
body.archive .hero::before,
body.search .hero::before,
body.blog .hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.1) !important;
    z-index: 1 !important;
}

/* Floating particles effect */
.hero::after,
body.category .hero::after,
body.category-agriculture .hero::after,
body.category-energy .hero::after,
body.category-healthcare .hero::after,
body.category-finance .hero::after,
body.category-construction .hero::after,
body.category-manufacturing .hero::after,
body.category-technology .hero::after,
body.category-trade .hero::after,
body.category-real-estate .hero::after,
body.category-retail .hero::after,
body.archive .hero::after,
body.search .hero::after,
body.blog .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.3) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
  z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-50px); }
}

/* Modern Hero Typography */
.hero h1,
body.category .hero h1,
body.category-agriculture .hero h1,
body.category-energy .hero h1,
body.category-healthcare .hero h1,
body.category-finance .hero h1,
body.category-construction .hero h1,
body.category-manufacturing .hero h1,
body.category-technology .hero h1,
body.category-trade .hero h1,
body.category-real-estate .hero h1,
body.category-retail .hero h1,
body.archive .hero h1,
body.search .hero h1,
body.blog .hero h1 {
    color: #333 !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 5px rgba(255,204,0,0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(255,204,0,0.6)); }
}

.hero .subtitle,
body.category .hero .subtitle,
body.category-agriculture .hero .subtitle,
body.category-energy .hero .subtitle,
body.category-healthcare .hero .subtitle,
body.category-finance .hero .subtitle,
body.category-construction .hero .subtitle,
body.category-manufacturing .hero .subtitle,
body.category-technology .hero .subtitle,
body.category-trade .hero .subtitle,
body.category-real-estate .hero .subtitle,
body.category-retail .hero .subtitle,
body.archive .hero .subtitle,
body.search .hero .subtitle,
body.blog .hero .subtitle {
    color: #333 !important;
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 2 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}

@keyframes subtitleFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 0.9; transform: translateY(0); }
}

/* ==========================================================================
   MODERN BLOG GRID SYSTEM
   ========================================================================== */

/* Universal Blog Grid - Works on any blog page */
.blog-grid {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 0 !important;
}

/* ==========================================================================
   MODERN BLOG CARD SYSTEM
   ========================================================================== */

/* Universal Blog Card - Glassmorphism Design */
.blog-card {
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 1px solid #f0f0f0 !important;
}

/* Card hover effects */
.blog-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

/* Card image container */
.blog-card-image {
    position: relative !important;
    overflow: hidden !important;
    height: 200px !important;
}

/* Card image styling */
.blog-card-thumbnail {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

/* Image hover effects */
.blog-card:hover .blog-card-thumbnail {
    transform: scale(1.05) !important;
}

/* Image overlay gradient */
.blog-card-image::after {
    content: '';
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

/* Card content area */
.blog-card-content {
    padding: 1.5rem !important;
}

/* Card title styling */
.blog-card-content h3 {
    margin-bottom: 0.5rem !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* Card title links */
.blog-card-content h3 a {
    color: #333 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

/* Title hover effects */
.blog-card-content h3 a:hover {
    color: #184BFF !important;
}

/* Card date styling */
.blog-card .date {
    color: #666 !important;
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    font-weight: 500 !important;
}

/* Card description */
.blog-card .description {
    color: #333 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* Modern read more button */
.blog-card .read-more {
    color: #184BFF !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
}

/* Read more hover effects */
.blog-card .read-more:hover {
    color: #0d2a7a !important;
    transform: translateX(5px) !important;
}

/* ==========================================================================
   NO POSTS MESSAGE - MODERN DESIGN
   ========================================================================== */

.no-posts {
    text-align: center !important;
    padding: 4rem 2rem !important;
    background: #f8f9fa !important;
    border-radius: 12px !important;
    margin: 2rem 0 !important;
}

.no-posts p {
    color: #666 !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
}

/* ==========================================================================
   MODERN PAGINATION SYSTEM
   ========================================================================== */

/* Pagination container */
.blog-grid + div {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
}

/* Modern pagination buttons */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 0.5rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Pagination hover and current states */
.page-numbers:hover,
.page-numbers.current {
    background: linear-gradient(135deg, #184BFF 0%, #0d2a7a 100%);
    color: #fff;
    border-color: #184BFF;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24,75,255,0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .hero .subtitle {
        font-size: 1.6rem;
    }
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2rem;
        padding: 3rem 1.5rem;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: 350px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
        max-width: 600px;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin-top: -10px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
        max-width: 500px;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-content h3 {
        font-size: 1.2rem;
    }
    
    .page-numbers {
        width: 40px;
        height: 40px;
        margin: 0 0.25rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
        min-height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .blog-grid {
        padding: 1.5rem 0.75rem;
    }
    
    .blog-card-content {
        padding: 1rem;
    }
    
    .no-posts {
        padding: 4rem 1rem;
    }
    
    .no-posts p {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero,
    .blog-card,
    .blog-card-thumbnail,
    .blog-card .read-more,
    .page-numbers {
        animation: none;
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #FFCC00;
    }
    
    .blog-card {
        background: #fff;
        border: 2px solid #000;
    }
    
    .blog-card .read-more {
        background: #184BFF;
        color: #fff;
        border: 2px solid #184BFF;
    }
}

/* Print styles */
@media print {
    .hero {
        background: #fff !important;
        color: #000 !important;
        box-shadow: none !important;
    }
    
    .blog-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    .blog-card .read-more,
    .page-numbers {
        display: none !important;
    }
}

/* Universal Landing Hero Styles */
.universal-landing-hero {
  width: 100vw;
  min-height: 45vh;
  max-height: 60vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.universal-landing-hero-img {
  width: 100vw;
  min-height: 45vh;
  max-height: 60vh;
  height: 45vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .universal-landing-hero, .universal-landing-hero-img {
    min-height: 30vh;
    height: 30vh;
    max-height: 40vh;
  }
}

/* Newsroom Blog Styles */
.newsroom-layout {
  background: #fff;
}
.newsroom-banner {
  width: 100vw;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%);
  color: #fff;
  padding: 2.5rem 0 1.5rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(24,75,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsroom-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.newsroom-logo {
  width: 70px;
  height: auto;
  margin-bottom: 0.5rem;
}
.newsroom-banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(24,75,255,0.15);
  margin-bottom: 0.2rem;
}
.newsroom-banner-sub {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.95;
  font-weight: 500;
}
.newsroom-content-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.newsroom-adspace {
  flex: 0 0 180px;
  min-width: 120px;
  max-width: 200px;
  min-height: 600px;
  background: #f8faff;
  border-radius: 12px;
  margin: 0 1.5rem;
  box-shadow: 0 2px 12px rgba(24,75,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 120px;
}
.left-adspace { margin-left: 0; }
.right-adspace { margin-right: 0; }
.newsroom-article {
  flex: 1 1 600px;
  max-width: 700px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(24,75,255,0.06);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  margin: 0 0.5rem;
  min-width: 0;
}
.newsroom-centered-text {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 0 auto;
}
.newsroom-nav .nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 1.5rem;
}
.newsroom-nav .nav-previous a,
.newsroom-nav .nav-next a {
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(24,75,255,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  outline: none;
  min-width: 120px;
  text-align: center;
}
.newsroom-nav .nav-previous a:hover,
.newsroom-nav .nav-next a:hover {
  background: var(--accent-color);
  color: #fff;
}
@media (max-width: 1100px) {
  .newsroom-content-row { flex-direction: column; align-items: center; }
  .newsroom-adspace { flex: 0 0 100px; min-width: 80px; max-width: 120px; min-height: 200px; margin: 1rem 0; }
  .newsroom-article { max-width: 98vw; padding: 1.2rem 0.5rem; }
}
@media (max-width: 700px) {
  .newsroom-content-row { flex-direction: column; }
  .newsroom-adspace { display: none; }
  .newsroom-article { max-width: 100vw; padding: 0.5rem 0.2rem; }
  .newsroom-banner { padding: 1.2rem 0 0.7rem 0; }
  .newsroom-banner-title { font-size: 1.3rem; }
}

body.single .newsroom-layout {
  background: #fff !important;
}
body.single .newsroom-banner {
  width: 100vw !important;
  background: linear-gradient(90deg, var(--primary-color) 60%, var(--accent-color) 100%) !important;
  color: #fff !important;
  padding: 2.5rem 0 1.5rem 0 !important;
  margin-bottom: 2rem !important;
  box-shadow: 0 8px 32px rgba(24,75,255,0.08) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
body.single .newsroom-banner-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
}
body.single .newsroom-logo {
  width: 70px !important;
  height: auto !important;
  margin-bottom: 0.5rem !important;
}
body.single .newsroom-banner-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(24,75,255,0.15) !important;
  margin-bottom: 0.2rem !important;
}
body.single .newsroom-banner-sub {
  font-size: 1.1rem !important;
  color: #fff !important;
  opacity: 0.95 !important;
  font-weight: 500 !important;
}
body.single .newsroom-content-row {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: flex-start !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 1rem !important;
}
body.single .newsroom-adspace {
  flex: 0 0 180px !important;
  min-width: 120px !important;
  max-width: 200px !important;
  min-height: 600px !important;
  background: #f8faff !important;
  border-radius: 12px !important;
  margin: 0 1.5rem !important;
  box-shadow: 0 2px 12px rgba(24,75,255,0.04) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: sticky !important;
  top: 120px !important;
}
body.single .left-adspace { margin-left: 0 !important; }
body.single .right-adspace { margin-right: 0 !important; }
body.single .newsroom-article {
  flex: 1 1 600px !important;
  max-width: 700px !important;
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(24,75,255,0.06) !important;
  padding: 2.5rem 2.5rem 2rem 2.5rem !important;
  margin: 0 0.5rem !important;
  min-width: 0 !important;
}
body.single .newsroom-centered-text {
  text-align: center !important;
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
  color: var(--text-color) !important;
  margin: 0 auto !important;
}
body.single .newsroom-nav .nav-links {
  display: flex !important;
  justify-content: space-between !important;
  margin-top: 2.5rem !important;
  gap: 1.5rem !important;
}
body.single .newsroom-nav .nav-previous a,
body.single .newsroom-nav .nav-next a {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 0.5rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(24,75,255,0.08) !important;
  transition: background 0.2s, color 0.2s !important;
  border: none !important;
  outline: none !important;
  min-width: 120px !important;
  text-align: center !important;
}
body.single .newsroom-nav .nav-previous a:hover,
body.single .newsroom-nav .nav-next a:hover {
  background: var(--accent-color) !important;
  color: #fff !important;
}
@media (max-width: 1100px) {
  body.single .newsroom-content-row { flex-direction: column !important; align-items: center !important; }
  body.single .newsroom-adspace { flex: 0 0 100px !important; min-width: 80px !important; max-width: 120px !important; min-height: 200px !important; margin: 1rem 0 !important; }
  body.single .newsroom-article { max-width: 98vw !important; padding: 1.2rem 0.5rem !important; }
}
@media (max-width: 700px) {
  body.single .newsroom-content-row { flex-direction: column !important; }
  body.single .newsroom-adspace { display: none !important; }
  body.single .newsroom-article { max-width: 100vw !important; padding: 0.5rem 0.2rem !important; }
  body.single .newsroom-banner { padding: 1.2rem 0 0.7rem 0 !important; }
  body.single .newsroom-banner-title { font-size: 1.3rem !important; }
}

body.single .newsroom-landing-banner {
  width: 100vw !important;
  height: 100vh !important;
  min-height: 480px !important;
  background: var(--secondary-color) !important;
  position: relative !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: center !important;
  margin-bottom: 2.5rem !important;
  overflow: hidden !important;
}
body.single .newsroom-banner-bg {
  width: 100vw !important;
  height: 100vh !important;
  min-height: 480px !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.single .newsroom-banner-logo {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 220px !important;
  height: auto !important;
  z-index: 1 !important;
  opacity: 0.95 !important;
  filter: drop-shadow(0 4px 24px rgba(24,75,255,0.10));
}
body.single .newsroom-banner-overlay {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 30, 60, 0.65) !important;
  z-index: 2 !important;
}
body.single .newsroom-banner-info {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  z-index: 3 !important;
  padding: 2.5rem 3.5rem 2.5rem 3.5rem !important;
  color: #fff !important;
  text-align: left !important;
  max-width: 90vw !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
body.single .newsroom-banner-meta {
  display: flex !important;
  gap: 1.2rem !important;
  font-size: 1.08rem !important;
  margin-bottom: 0.7rem !important;
  flex-wrap: wrap;
  align-items: center !important;
}
body.single .newsroom-banner-category a {
  color: #fff !important;
  background: var(--primary-color) !important;
  padding: 0.2rem 0.8rem !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
}
body.single .newsroom-banner-date,
body.single .newsroom-banner-timezone,
body.single .newsroom-banner-author {
  color: #fff !important;
  opacity: 0.92 !important;
  font-size: 0.97rem !important;
}
body.single .newsroom-banner-title {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0.2rem 0 0 0 !important;
  text-shadow: 0 2px 10px rgba(24,75,255,0.18) !important;
  line-height: 1.2 !important;
}
body.single .newsroom-banner-btn {
  background: rgba(255,255,255,0.12) !important;
  border: none !important;
  color: #fff !important;
  border-radius: 50% !important;
  width: 2.3rem !important;
  height: 2.3rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-left: 0.3rem !important;
  margin-right: 0.3rem !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  transition: background 0.2s;
  outline: none !important;
  box-shadow: none !important;
}
body.single .newsroom-banner-btn:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}
body.single .newsroom-textsize-svg {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  body.single .newsroom-landing-banner,
  body.single .newsroom-banner-bg {
    height: 50vh !important;
    min-height: 180px !important;
  }
  body.single .newsroom-banner-logo {
    width: 100px !important;
  }
  body.single .newsroom-banner-info {
    padding: 1rem 1.2rem 0.7rem 1.2rem !important;
  }
  body.single .newsroom-banner-title {
    font-size: 1.2rem !important;
  }
}
body.single .newsroom-nav .nav-previous a,
body.single .newsroom-nav .nav-next a {
  background: transparent !important;
  color: var(--primary-color) !important;
  border-radius: 0 !important;
  padding: 0.5rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  min-width: 120px !important;
  text-align: center !important;
  transition: color 0.2s;
}
body.single .newsroom-nav .nav-previous a:hover,
body.single .newsroom-nav .nav-next a:hover {
  color: var(--accent-color) !important;
  background: transparent !important;
}

body.single .newsroom-nav .nav-links {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 2.5rem !important;
  gap: 1.5rem !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
@media (max-width: 700px) {
  body.single .newsroom-nav .nav-links {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    margin-top: 1.2rem !important;
  }
}
/* Remove any yellow bar before the footer on single post pages */
body.single .newsroom-nav,
body.single .newsroom-nav .nav-links,
body.single .post-footer {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

body.single .newsroom-nav-btn {
  display: inline-block !important;
  background: #fff !important;
  color: var(--primary-color) !important;
  border: 2.5px solid var(--primary-color) !important;
  border-radius: 2.2rem !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  padding: 0.7rem 2.2rem !important;
  margin: 0.5rem 0.7rem !important;
  box-shadow: 0 4px 18px rgba(24,75,255,0.13) !important;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  outline: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  text-align: center !important;
}
body.single .newsroom-nav-btn:hover,
body.single .newsroom-nav-btn:focus,
body.single .newsroom-nav-btn:active {
  background: var(--primary-color) !important;
  color: #fff !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 6px 24px rgba(24,75,255,0.22) !important;
}
@media (max-width: 700px) {
  body.single .newsroom-nav-btn {
    width: 100% !important;
    font-size: 1.1rem !important;
    padding: 0.7rem 0 !important;
    margin: 0.3rem 0 !important;
  }
}

body.single .newsroom-share-main-btn {
  position: relative !important;
  z-index: 10010 !important;
}
body.single .newsroom-share-dropdown {
  display: none;
  position: absolute;
  z-index: 10020;
  min-width: 220px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(24,75,255,0.13);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  right: 0;
  top: 44px;
  outline: none;
}
body.single .newsroom-share-dropdown[style*="display: block"] {
  display: block !important;
}
body.single .newsroom-share-item {
  width: 100%;
  background: none;
  border: none;
  color: #184BFF;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
body.single .newsroom-share-item:hover, body.single .newsroom-share-item:focus {
  background: #f0f6ff;
  color: #184BFF;
  outline: none;
}
body.single .newsroom-share-dropdown li:last-child .newsroom-share-item {
  border-radius: 0 0 1rem 1rem;
}
body.single .newsroom-share-dropdown li:first-child .newsroom-share-item {
  border-radius: 1rem 1rem 0 0;
}
body.single .newsroom-share-icon {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  width: 1.7rem;
  justify-content: center;
}
@media (max-width: 700px) {
  body.single .newsroom-share-dropdown {
    left: 0;
    right: auto;
    min-width: 180px;
    top: 44px;
  }
}

body.single .newsroom-share-dropdown {
  display: none;
  position: absolute;
  z-index: 999999 !important;
  min-width: 220px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 12px 40px 0 rgba(24,75,255,0.18), 0 2px 8px 0 rgba(0,0,0,0.08);
  border: 1.5px solid #e3e9f7;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  right: 0;
  top: 44px;
  outline: none;
  transition: box-shadow 0.18s;
}
body.single .newsroom-share-dropdown[style*="display: block"] {
  display: block !important;
}
body.single .newsroom-share-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 32px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-left: 1.5px solid #e3e9f7;
  border-top: 1.5px solid #e3e9f7;
  transform: rotate(45deg);
  z-index: 9999999;
  box-shadow: -2px -2px 8px 0 rgba(24,75,255,0.08);
}
body.single .newsroom-share-item {
  width: 100%;
  background: none;
  border: none;
  color: #184BFF;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
body.single .newsroom-share-item:hover, body.single .newsroom-share-item:focus {
  background: #f0f6ff;
  color: #184BFF;
  outline: none;
}
body.single .newsroom-share-dropdown li:last-child .newsroom-share-item {
  border-radius: 0 0 1rem 1rem;
}
body.single .newsroom-share-dropdown li:first-child .newsroom-share-item {
  border-radius: 1rem 1rem 0 0;
}
body.single .newsroom-share-icon {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  width: 1.7rem;
  justify-content: center;
}
@media (max-width: 700px) {
  body.single .newsroom-share-dropdown {
    left: 0;
    right: auto;
    min-width: 180px;
    top: 44px;
  }
  body.single .newsroom-share-dropdown::before {
    right: 16px;
  }
}

/* Share Modal Styles (like contact modal) */
.share-modal-modern {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,75,255,0.13);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: fadeInModal 0.3s;
}
.share-modal-modern[style*="display: flex"] {
  display: flex !important;
}
.share-modal-content-modern {
  background: #fff;
  border-radius: 18px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 8px 32px rgba(24,75,255,0.13);
  max-width: 400px;
  width: 100%;
  position: relative;
  text-align: center;
  animation: scaleIn 0.3s;
}
.close-share-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: #111;
  cursor: pointer;
  transition: color 0.18s;
}
.close-share-modal:hover {
  color: #184BFF;
}
.share-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.share-modal-btn {
  background: #f8faff;
  color: #184BFF;
  border: none;
  border-radius: 25px;
  padding: 0.85rem 1.7rem;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(24,75,255,0.08);
  cursor: pointer;
  min-width: 140px;
  justify-content: center;
}
.share-modal-btn.x { color: #111; background: #f8faff; }
.share-modal-btn.facebook { color: #184BFF; background: #f8faff; }
.share-modal-btn.linkedin { color: #184BFF; background: #f8faff; }
.share-modal-btn.whatsapp { color: #25D366; background: #f8faff; }
.share-modal-btn.email { color: #184BFF; background: #f8faff; }
.share-modal-btn.copy { color: #184BFF; background: #f8faff; }
.share-modal-btn:hover, .share-modal-btn:focus {
  background: #184BFF;
  color: #fff;
  box-shadow: 0 4px 16px rgba(24,75,255,0.13);
  outline: none;
}
.share-modal-btn.whatsapp:hover, .share-modal-btn.whatsapp:focus {
  background: #25D366;
  color: #fff;
}
.share-modal-btn.x:hover, .share-modal-btn.x:focus {
  background: #111;
  color: #fff;
}
@media (max-width: 600px) {
  .share-modal-content-modern {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .share-modal-btn {
    min-width: 90px;
    font-size: 0.98rem;
    padding: 0.7rem 0.5rem;
  }
}

/* Login and Registration Page Styles */
.login-page-container,
.register-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #184BFF 0%, #ffcc00 100%);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.login-page-container::before,
.register-page-container::before {
    content: '';
    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;
    z-index: 1;
}

.login-form-wrapper,
.register-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.login-header,
.register-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1,
.register-header h1 {
    color: #184BFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #184BFF, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p,
.register-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.login-error,
.register-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.login-success,
.register-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #3c3;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.login-form,
.register-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #184BFF;
    box-shadow: 0 0 0 3px rgba(24, 75, 255, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #184BFF;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #184BFF;
    border-color: #184BFF;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.login-submit-btn,
.register-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #184BFF, #0d3bb8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-submit-btn:hover,
.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(24, 75, 255, 0.3);
}

.login-submit-btn:disabled,
.register-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.login-footer,
.register-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.forgot-password,
.register-link a,
.login-link a {
    color: #184BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover,
.register-link a:hover,
.login-link a:hover {
    color: #0d3bb8;
    text-decoration: underline;
}

.register-link,
.login-link {
    margin-top: 1rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-form-wrapper,
    .register-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group input {
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .login-page-container,
    .register-page-container {
        padding: 1rem 0.5rem;
    }
    
    .login-form-wrapper,
    .register-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .login-header h1,
    .register-header h1 {
        font-size: 1.75rem;
    }
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: inherit;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid #e1e5e9;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #184BFF;
}

/* Security Notice */
.security-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.security-notice svg {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Account Dashboard Styles */
.account-page-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    padding: 2rem 1rem;
}

.account-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.account-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.account-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.account-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.account-header {
    text-align: center;
    margin-bottom: 3rem;
}

.account-header h1 {
    color: #184BFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.account-header p {
    color: #666;
    font-size: 1.1rem;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.account-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(24, 75, 255, 0.08);
    border: 1px solid rgba(24, 75, 255, 0.1);
}

.account-section h2 {
    color: #184BFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-info-grid {
    display: grid;
    gap: 1rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #184BFF;
}

.info-item label {
    font-weight: 600;
    color: #333;
}

.info-item span {
    color: #666;
    font-weight: 500;
}

.security-actions {
    display: grid;
    gap: 1rem;
}

.security-form {
    margin: 0;
}

.security-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
}

.logout-all-btn {
    background: #dc3545;
    color: white;
}

.logout-all-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.enable-2fa-btn {
    background: #28a745;
    color: white;
}

.enable-2fa-btn:hover {
    background: #218838;
    transform: translateY(-2px);
}

.disable-2fa-btn {
    background: #ffc107;
    color: #212529;
}

.disable-2fa-btn:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.change-password-btn {
    background: #184BFF;
    color: white;
}

.change-password-btn:hover {
    background: #0d3bb8;
    transform: translateY(-2px);
}

.quick-actions {
    display: grid;
    gap: 1rem;
}

.quick-action-btn {
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quick-action-btn:hover {
    background: #184BFF;
    color: white;
    border-color: #184BFF;
    transform: translateY(-2px);
}

.status-grid {
    display: grid;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.status-item.active {
    background: #d4edda;
    border-color: #c3e6cb;
}

.status-item.inactive {
    background: #f8d7da;
    border-color: #f5c6cb;
}

.status-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.status-item.active .status-icon {
    color: #28a745;
}

.status-item.inactive .status-icon {
    color: #dc3545;
}

.status-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.status-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.account-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

/* Password Reset Page Styles */
.password-reset-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #184BFF 0%, #ffcc00 100%);
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

.password-reset-page-container::before {
    content: '';
    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;
    z-index: 1;
}

.password-reset-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.password-reset-header {
    text-align: center;
    margin-bottom: 2rem;
}

.password-reset-header h1 {
    color: #184BFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #184BFF, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.password-reset-header p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.password-reset-error {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.password-reset-success {
    background: #efe;
    border: 1px solid #cfc;
    color: #3c3;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.password-reset-form {
    margin-bottom: 2rem;
}

.password-reset-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #184BFF, #0d3bb8);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.password-reset-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(24, 75, 255, 0.3);
}

.password-reset-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.password-reset-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.back-to-login {
    color: #184BFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 1rem;
}

.back-to-login:hover {
    color: #0d3bb8;
    text-decoration: underline;
}

/* Responsive Design for Account Pages */
@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .account-header h1 {
        font-size: 2rem;
    }
    
    .account-section {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .password-reset-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .password-reset-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .account-page-container {
        padding: 1rem 0.5rem;
    }
    
    .account-header h1 {
        font-size: 1.75rem;
    }
    
    .account-section {
        padding: 1rem;
    }
    
    .password-reset-page-container {
        padding: 1rem 0.5rem;
    }
    
    .password-reset-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .password-reset-header h1 {
        font-size: 1.75rem;
    }
}
/* === Blog Typography Enhancements (uniform across categories and posts) === */
.blog-card-content .description {
    line-height: 1.85;
    text-indent: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}

/* Category fallback template (category.php) post cards */
.blog-post-content p,
.blog-post-excerpt,
.blog-post-excerpt p {
    line-height: 1.85;
    text-indent: 1.25rem;
    margin: 0 0 1.25rem 0;
}

/* Single post content (common WordPress class) */
.entry-content p {
    line-height: 1.9;
    text-indent: 1.25rem;
    margin: 0 0 1.35rem 0;
}

/* Ensure headings don't get indented */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    text-indent: 0;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

/* Add extra spacing between sequential paragraphs for clear demarcation */
.entry-content p + p,
.blog-post-content p + p,
.blog-card-content .description + .description {
    margin-top: 0.5rem !important;
}

/* === Universal Blog Paragraph Formatting (forceful) === */
body.single .entry-content p,
body.single-post .entry-content p,
body.category .blog-card-content .description,
body.archive .blog-card-content .description,
body.category .blog-post-content p,
body.archive .blog-post-content p,
body.category .blog-post-excerpt,
body.archive .blog-post-excerpt,
.entry-content .wp-block-paragraph,
.entry-content .wp-block-paragraph p {
    line-height: 1.9 !important;
    text-indent: 1.25rem !important;
    margin-top: 0.5rem !important;
    margin-bottom: 3rem !important; /* ~48px for clear separation */
}

/* Do not indent headings; ensure spacing consistent */
body.single .entry-content h1,
body.single .entry-content h2,
body.single .entry-content h3,
body.single .entry-content h4,
body.single .entry-content h5,
body.single .entry-content h6,
.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    text-indent: 0 !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0.75rem !important;
}

/* Tighter spacing between consecutive paragraphs but keep strong separation */
.entry-content p + p,
.blog-post-content p + p,
.blog-card-content .description + .description {
    margin-top: 0.5rem !important;
}