/* styles.css - Complete Custom Styles for Material Markets Website */

/* ===== CSS RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #334155;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ===== SECTION HEADING ANIMATIONS ===== */
.section-heading {
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center center;
    text-shadow: 0 0 0px rgba(106, 154, 50, 0);
}

.section-heading.active {
    text-shadow: 0 0 20px rgba(106, 154, 50, 0.3);
    transform: scale(1.05);
}

/* ===== NAVIGATION DOTS ===== */
.nav-dot {
    width: 12px;
    height: 12px;
    background-color: #cbd5e1;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: block;
}

.nav-dot.active {
    background-color: #6a9a32 !important;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(106, 154, 50, 0.5);
}

.nav-dot:hover {
    background-color: #89b53f !important;
}

/* ===== MOBILE MENU STYLES ===== */
#mobileMenu {
    transition: transform 0.3s ease;
}

#mobileMenuOverlay {
    transition: opacity 0.3s ease;
}

#mobileMenu a {
    transition: all 0.2s ease;
}

#mobileMenu a:hover {
    background-color: #f3f7ed;
    color: #6a9a32;
}

/* ===== CARD HOVER EFFECTS ===== */
.service-card,
.team-card,
.spotlight-card,
.stat-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover,
.team-card:hover,
.spotlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #6a9a32;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ===== TEAM CARD ENHANCEMENTS ===== */
.team-card {
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a9a32, #a8c66a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.team-card img {
    transition: all 0.3s ease;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* Enhanced team profile images */
.team-card .relative.group img {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .relative.group img {
    transform: translateY(-5px);
}

.team-card .relative.group div:first-child {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== SPOTLIGHT CARD ENHANCEMENTS ===== */
.spotlight-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spotlight-card .w-16 {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-card:hover .w-16 {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #e3edd1, #c8db9f) !important;
}

.spotlight-card .fa-arrow-right {
    transition: transform 0.3s ease;
}

/* ===== SERVICE ICON EFFECTS ===== */
.service-card:hover .w-12 {
    background-color: #e3edd1 !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #c8db9f;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8c66a;
}

/* ===== VIDEO OVERLAY EFFECTS ===== */
#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}


/* ===== HERO SECTION TEXT EFFECTS ===== */
#hero h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== CONTACT FORM FOCUS ===== */
#contactForm input:focus,
#contactForm textarea:focus {
    border-color: #6a9a32;
    box-shadow: 0 0 0 3px rgba(106, 154, 50, 0.1);
}

/* ===== FOOTER LINK EFFECTS ===== */
footer a:hover {
    color: #a8c66a;
    transition: color 0.2s ease;
}

/* ===== VIDEO LOADING STATES ===== */
video {
    opacity: 0;
    transition: opacity 0.5s ease;
}

video.loaded {
    opacity: 1;
}

/* ===== STATS COUNTER ANIMATION ===== */
.stat-card .text-3xl {
    transition: all 0.3s ease;
}

.stat-card:hover .text-3xl {
    color: #4f7826;
    transform: scale(1.1);
}

/* ===== ANIMATION CLASSES ===== */
.animate-spin-slow {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== SPOTLIGHT ICON ANIMATIONS ===== */
@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.spotlight-card:hover .w-16 i {
    animation: float-icon 2s ease-in-out infinite;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .nav-dots {
        display: none;
    }
    
    #hero h1 {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .service-card,
    .team-card,
    .spotlight-card {
        margin-bottom: 1.5rem;
    }
    
    /* Mobile menu improvements */
    #mobileMenu {
        width: 280px;
    }
    
    #mobileMenu a {
        padding: 0.75rem 1rem;
    }
    
    /* Team section mobile adjustments */
    .team-card {
        padding: 1.5rem;
    }
    
    .team-card .flex-col.md\:flex-row {
        flex-direction: column;
    }
    
    .team-card img {
        width: 120px;
        height: 120px;
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 640px) {
    #hero h1 {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-card .text-3xl {
        font-size: 2rem;
    }
    
    /* Spotlight cards mobile */
    .spotlight-card {
        padding: 1.5rem;
    }
    
    .spotlight-card .w-16 {
        width: 3rem;
        height: 3rem;
    }
    
    .spotlight-card .w-16 i {
        font-size: 1.5rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .nav-dots,
    #mobileMenuButton,
    #mobileMenu,
    #mobileMenuOverlay,
    video,
    .scroll-indicator {
        display: none !important;
    }
    
    #hero {
        height: auto;
        min-height: 300px;
        background: #f3f7ed !important;
    }
    
    #hero::after {
        display: none;
    }
    
    .service-card,
    .team-card,
    .spotlight-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    a {
        text-decoration: none;
        color: #1e293b !important;
    }
    
    .team-card img {
        filter: grayscale(100%);
    }
    
    .spotlight-card .w-16 {
        background: #f3f7ed !important;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .spotlight-card:hover .w-16 {
        transform: none !important;
    }
}

/* ===== HIGH CONTRAST MODE SUPPORT ===== */
@media (prefers-contrast: high) {
    .brand-600 {
        color: #2f4717;
    }
    
    .brand-700 {
        color: #1f2f0f;
    }
    
    .service-card,
    .team-card,
    .spotlight-card {
        border: 2px solid #4f7826;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    .service-card,
    .team-card,
    .spotlight-card,
    .stat-card {
        background-color: #1a202c;
        border-color: #2d3748;
    }
    
    .text-gray-700 {
        color: #cbd5e0;
    }
    
    .text-gray-600 {
        color: #a0aec0;
    }
    
    .bg-gray-50 {
        background-color: #2d3748;
    }
    
    .border-gray-200 {
        border-color: #4a5568;
    }
    
    .spotlight-card .w-16 {
        background: linear-gradient(135deg, #2d3748, #4a5568) !important;
    }
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.loading {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== SMOOTH TRANSITIONS ===== */
a,
button,
input,
textarea {
    transition: all 0.2s ease;
}

/* ===== SELECTION STYLES ===== */
::selection {
    background-color: rgba(106, 154, 50, 0.3);
    color: #1e293b;
}

::-moz-selection {
    background-color: rgba(106, 154, 50, 0.3);
    color: #1e293b;
}

/* ===== SCROLL PADDING FOR ANCHOR LINKS ===== */
html {
    scroll-padding-top: 80px;
}

/* ===== VIDEO FALLBACK STYLES ===== */
.video-fallback {
    background: linear-gradient(135deg, #f3f7ed 0%, #e3edd1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f7826;
    font-weight: 600;
}

/* ===== FORM VALIDATION STYLES ===== */
/* input:invalid,
textarea:invalid {
    border-color: #dc2626;
} */

input:valid,
textarea:valid {
    border-color: #16a34a;
}

/* ===== SKIP TO CONTENT LINK ===== */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #6a9a32;
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* ===== FOCUS VISIBLE POLYFILL ===== */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/* ===== TEAM EXPERTISE TAGS ===== */
.bg-brand-50 {
    background-color: rgba(106, 154, 50, 0.1);
}

/* ===== GRADIENT BORDERS ===== */
.gradient-border {
    position: relative;
    background: white;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #6a9a32, #a8c66a, #6a9a32);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}


/* Add this to your existing styles.css file */
#blogModal .overflow-y-auto {
    max-height: 70vh;
    overflow-y: auto;
}

#blogModal .prose {
    max-width: 100%;
}

/* Ensure modal content scrolls properly */
#blogModal {
    overflow-y: auto;
}

#blogModal > div {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

/* Custom scrollbar for modal */
#blogModal .overflow-y-auto::-webkit-scrollbar {
    width: 6px;
}

#blogModal .overflow-y-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#blogModal .overflow-y-auto::-webkit-scrollbar-thumb {
    background: #c8db9f;
    border-radius: 3px;
}

#blogModal .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: #a8c66a;
}

/* Blog Modal Enhancements */
.blog-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4b5563;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.blog-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-content .highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.blog-content .data-point {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
}

.blog-content .data-point strong {
    color: #1e40af;
}

/* Print styles for blog articles */
@media print {
    .blog-content {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .blog-content img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
    
    .blog-content h2, 
    .blog-content h3 {
        page-break-after: avoid;
    }
    
    .no-print {
        display: none !important;
    }
}

/* Image captions */
.image-caption {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Quote styling */
.blog-quote {
    border-left: 4px solid #6a9a32;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4b5563;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

.blog-quote::before {
    content: "“";
    font-size: 3rem;
    color: #6a9a32;
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.25rem;
}


/* Feasibility-specific styles */
.blog-content .data-point {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
}

.blog-content .data-point::before {
    content: "📊";
    position: absolute;
    left: 1rem;
    top: -0.75rem;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
}

.blog-content .insight-box {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.blog-content .policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.blog-content .policy-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: transform 0.2s ease;
}

.blog-content .policy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Numbered list styling */
.blog-content .numbered-section {
    counter-reset: section;
}

.blog-content .numbered-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.blog-content .numbered-item::before {
    counter-increment: section;
    content: counter(section);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: #6a9a32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Chart container styling */
.chart-container {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.chart-container h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.chart-source {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-content h3 {
        font-size: 1.25rem;
    }
    
    .numbered-item {
        padding-left: 2.5rem;
    }
    
    .numbered-item::before {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.875rem;
    }
}








/* Responsive Blog Modal Styles - Add to your existing CSS */

/* Mobile-first responsive adjustments for blog modal */
@media (max-width: 640px) {
  /* Blog modal container */
  #blogModal .bg-white {
    margin: 0;
    padding: 1rem !important;
    border-radius: 1rem !important;
  }
  
  /* Hero section adjustments */
  .relative.overflow-hidden.bg-gradient-to-r {
    padding: 1.5rem !important;
  }
  
  .flex-col.lg\\:flex-row {
    gap: 1.5rem !important;
  }
  
  .w-20.h-20 {
    width: 3.5rem !important;
    height: 3.5rem !important;
  }
  
  /* Typography scaling */
  .text-3xl.md\\:text-4xl {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }
  
  .text-4xl.md\\:text-5xl {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }
  
  .text-2xl {
    font-size: 1.5rem !important;
  }
  
  .text-xl {
    font-size: 1.25rem !important;
  }
  
  .text-lg {
    font-size: 1.125rem !important;
  }
  
  /* Grid layouts for mobile */
  .grid.md\\:grid-cols-2,
  .grid.md\\:grid-cols-3,
  .grid.md\\:grid-cols-4 {
    grid-template-columns: 1fr !important;
  }
  
  .grid.lg\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
  
  /* Padding adjustments */
  .p-10, .p-12, .p-16 {
    padding: 1.5rem !important;
  }
  
  .p-8 {
    padding: 1.25rem !important;
  }
  
  .p-6 {
    padding: 1rem !important;
  }
  
  /* Image responsiveness */
  #blogModal img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Chart container adjustments */
  .rounded-3xl.overflow-hidden.bg-gradient-to-br {
    padding: 1rem !important;
  }
  
  /* Executive summary box */
  .bg-gradient-to-r.from-brand-600.to-brand-800 {
    padding: 1.5rem !important;
  }
  
  /* Service cards */
  .bg-gradient-to-r.from-white.to-brand-50 {
    padding: 1.5rem !important;
  }
  
  .flex-col.lg\\:flex-row.items-start.gap-8 {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .lg\\:w-1\\/4, .lg\\:w-3\\/4 {
    width: 100% !important;
  }
  
  /* CTA section adjustments */
  .bg-white\\/10.backdrop-blur-sm.rounded-3xl {
    padding: 1.5rem !important;
  }
  
  /* Flex containers */
  .flex-col.lg\\:flex-row {
    flex-direction: column !important;
  }
  
  .justify-center.gap-8 {
    gap: 1.5rem !important;
  }
  
  /* Text containers */
  .bg-white\\/90.backdrop-blur-sm {
    padding: 1rem !important;
  }
  
  /* Icon sizes */
  .w-16.h-16 {
    width: 3rem !important;
    height: 3rem !important;
  }
  
  .text-3xl {
    font-size: 1.5rem !important;
  }
  
  /* Remove excessive border radius on mobile */
  .rounded-4xl {
    border-radius: 1.5rem !important;
  }
}

@media (max-width: 768px) and (min-width: 641px) {
  /* Tablet adjustments */
  .grid.md\\:grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .grid.md\\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .grid.lg\\:grid-cols-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .p-10, .p-12 {
    padding: 2rem !important;
  }
  
  .text-3xl.md\\:text-4xl {
    font-size: 2rem !important;
  }
  
  .text-4xl.md\\:text-5xl {
    font-size: 2.25rem !important;
  }
}

/* Additional responsive fixes for text overflow */
.text-overlap-fix {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Ensure images don't overflow */
#modalContent img {
  max-width: 100%;
  height: auto;
}

/* Modal container responsiveness */
#blogModal .fixed.inset-0 {
  padding: 0.5rem;
}

#blogModal .bg-white {
  max-height: 90vh;
  overflow-y: auto;
}

/* Improve mobile scrolling */
#blogModal .overflow-y-auto {
  -webkit-overflow-scrolling: touch;
}

/* Button sizing for touch */
#blogModal button,
#blogModal a[role="button"] {
  min-height: 44px;
  min-width: 44px;
}

/* Form elements on mobile */
#blogModal input,
#blogModal textarea {
  font-size: 16px; /* Prevents zoom on iOS */
}

/* Hide decorative elements on mobile for better performance */
@media (max-width: 640px) {
  .absolute.top-0.right-0.w-64.h-64,
  .absolute.top-10.left-10.w-64.h-64,
  .absolute.bottom-10.right-10.w-80.h-80,
  .absolute.top-1\\/2.left-1\\/2.w-96.h-96 {
    display: none;
  }
  
  /* Simplify shadows on mobile */
  .shadow-2xl, .shadow-xl {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }
}

/* Fix for very small screens */
@media (max-width: 380px) {
  .text-3xl.md\\:text-4xl {
    font-size: 1.5rem !important;
  }
  
  .text-xl {
    font-size: 1.125rem !important;
  }
  
  .p-8 {
    padding: 1rem !important;
  }
  
  .gap-8 {
    gap: 1rem !important;
  }
}

/* Improve readability on mobile */
@media (max-width: 640px) {
  #blogModal {
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Reduce padding in tight spaces */
  .space-y-12 > * + * {
    margin-top: 2rem !important;
  }
  
  .space-y-8 > * + * {
    margin-top: 1.5rem !important;
  }
  
  /* Stack flex containers */
  .flex.flex-wrap {
    justify-content: center;
  }
  
  /* Adjust icon containers */
  .w-20.h-20.rounded-2xl {
    width: 3rem !important;
    height: 3rem !important;
  }
  
  .text-3xl {
    font-size: 1.25rem !important;
  }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
  #blogModal .fixed.inset-0 {
    position: fixed;
    height: 100%;
    width: 100%;
  }
  
  #blogModal .overflow-y-auto {
    -webkit-overflow-scrolling: touch;
  }
}








