/* ============================================
   GENERAL RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Nunito", sans-serif !important;
    background-color: rgb(255, 255, 253);
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #333;
}

p {
    color: #212529 !important;
}

/* Update this in your style section */
:root {
    /* Use a slightly darker blue for better contrast against white */
    --blue-accessible: #1a5fb4; 
}

.tile-num {
    background: var(--blue-accessible); /* Background must be dark enough */
    color: #ffffff; /* Text must be pure white */
    font-weight: 700;
}

.tile-content {
    border-left: 5px solid var(--blue-accessible);
}

.highlight-text {
    color: var(--blue-accessible);
}
/* ============================================
   ENHANCED HERO SECTION
============================================ */
.hero-main-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%),
        url("/src/assets/images/quarrybricksrmc.avif") center/cover no-repeat;
}

.hero-main-container {
    max-width: 1200px;
    width: 100%;
    padding: 80px 40px;
    z-index: 2;
}

.hero-main-content {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.hero-content-left > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.hero-content-left > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content-left > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content-left > *:nth-child(3) { animation-delay: 0.6s; }

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.hero-text-highlight {
    color: #3E89EC;
    text-shadow: 0 4px 12px rgba(62,137,236,0.6);
    position: relative;
    display: inline-block;
}

.hero-text-highlight::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3E89EC, transparent);
    border-radius: 2px;
}

.hero-subheadline {
    font-size: 1.4rem;
    font-weight: 500;
    color: #E8F1FF;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    padding-bottom: 25px;
}

.hero-subheadline::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3E89EC, transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
    width: 100%;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 35px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-feature-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(62, 137, 236, 0.4);
    box-shadow: 0 12px 48px rgba(62, 137, 236, 0.3);
}

.hero-main-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff !important;
    margin: 0;
    text-align: left;
}

.hero-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #3E89EC, #5BA3FF);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    top: -2px;
    box-shadow: 0 0 15px rgba(62, 137, 236, 0.6);
}

.hero-highlight {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(62,137,236,0.25), rgba(62,137,236,0.15));
    padding: 3px 10px;
    border-radius: 6px;
    border-left: 3px solid #3E89EC;
}

.feature-icon-circle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-feature-item p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Action Buttons */
.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    background: #3E89EC;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(62, 137, 236, 0.4);
    transition: 0.3s;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.btn-primary:hover { 
    background: #2c6ec7; 
}

.btn-secondary:hover { 
    background: #fff; 
    color: #333; 
}

/* ============================================
   ENHANCED KEY CAPABILITIES SECTION
============================================ */
.awesome-erp {
    background: linear-gradient(135deg, #007bff 0%, #3E89EC 50%, #5BA3FF 100%);
    color: white;
    width: 100%;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.awesome-erp::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.erp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.erp-left h2,
.erp-right p {
    color: white !important;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.erp-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.erp-right p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
}

.erp-divider {
    width: 3px;
    height: 100px;
    background: linear-gradient(180deg, transparent, white, transparent);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

/* ============================================
   ENHANCED WHY US / CARDS SECTION
============================================ */
.why-us {
    padding: 80px 10%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-card {
    position: relative;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    min-height: 220px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62,137,236,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.bg-image {
    background-size: cover;
    background-position: center;
    border: none;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.85) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.feature-card:hover .card-overlay {
    background: linear-gradient(to bottom, 
        rgba(62,137,236,0.4) 0%, 
        rgba(0,0,0,0.7) 50%,
        rgba(0,0,0,0.9) 100%);
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.feature-card:hover .card-content {
    transform: translateY(-10px);
}

.bg-image .card-content h5, 
.bg-image .card-content p {
    color: #ffffff !important;
}

.feature-card h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f253d;
    letter-spacing: -0.5px;
}
@media (max-width: 576px) {
   .feature-card h5 {
    font-size: 1rem;
    
}

.feature-card p {
    font-size: 14px !important;
}
}

.feature-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.feature-card img {
    width: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    transition: transform 0.4s ease;
}

.feature-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* ============================================
   ENHANCED BENEFITS SECTION
============================================ */
.sections-container {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, rgb(255, 255, 253) 100%);
    position: relative;
}

.sections-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3E89EC, transparent);
    border-radius: 2px;
}

.sections-container .top-line {
    font-size: 0.95rem;
    font-weight: 700;
    color: #3E89EC;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.sections-container .top-line::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #3E89EC;
}

.sections-container h1 {
    font-size: 3rem;
    color: #1f253d;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.3;
}

.sections-container h1 .succeed-text {
    color: #3E89EC;
    position: relative;
    display: inline-block;
}

.sections-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   ENHANCED TECHNOLOGY SECTION
============================================ */
.technology-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* max-width: 1300px; */
    margin: 0px auto;
    padding: 60px 90px;
    gap: 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(62,137,236,0.1), transparent);
    border-radius: 50%;
}

.content {
    flex: 1;
    min-width: 350px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #3E89EC;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f253d;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.content h1 .succeed-text {
    color: #3E89EC;
    position: relative;
}

.content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    flex: 1;
    min-width: 350px;
}

.technology-section .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    min-height: auto;
}

.technology-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(62, 137, 236, 0.2);
    border-color: #3E89EC;
}

.technology-section .feature-card .icon {
    font-size: 48px;
    color: #3E89EC;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    display: block;
}

.technology-section .feature-card:hover .icon {
    transform: scale(1.15) rotate(5deg);
}

.technology-section .feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f253d;
    margin-bottom: 10px;
}

.technology-section .feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FOOTER
============================================ */
.footer-container {
    position: relative;
    background-color: rgb(255, 255, 253);
    padding: 0px 20px;
    padding-top: 30px;
    text-align: center;
    overflow: hidden;
}

.footer-container::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: rgb(255, 255, 253);
    border-radius: 50% 50% 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content h1 {
    letter-spacing: 10px;
}

.heading {
    color: #2d3748;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.join-button {
    display: inline-block;
    background-color: #216DCE;
    color: #fafbfc !important;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.join-button:hover {
    background-color: #333;
}

.a {
    background-color: rgb(255, 255, 253);
    color: #333;
    text-align: center;
    padding: 20px 0;
}

.b {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.c {
    margin: 0 10px;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.c:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.d {
    width: 30px;
    transition: filter 0.3s ease;
}

.d:hover {
    filter: brightness(1.2);
}

.e {
    font-size: 14px;
    color: #333;
    padding: 30px 0 0;
    max-width: 850px;
    margin: 0 auto;
}

.f {
    color: #333;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.f:hover {
    color: #007bff;
    text-decoration: underline;
}

.f:not(:last-child)::after {
    content: " | ";
    color: #333;
}

.footerbottom {
    padding: 40px 0 40px;
    background: #0b0d1f;
    margin-top: 50px;
    color: white;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footerbottom img {
    height: 60px;
    display: block;
    margin: 0 auto 20px auto;
}

.footerbottom span {
    font-size: 14px;
}

/* ============================================
   HELPER ELEMENTS
============================================ */
.scroll-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 100;
    display: none;
}

.scroll-top:hover {
    background-color: #f8f9fa;
}

.help-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    border: 2px solid #6aa5ff;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(99, 91, 255, 0.3);
}

.help-btn:hover {
    background-color: #1f78fc;
    color: #fff;
    text-decoration: none;
}

.call {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 27px !important;
}

.call a {
    text-decoration: none !important;
    color: white !important;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

.ringing-icon {
    font-size: 22px !important;
    color: white;
    animation: ring 1s infinite ease-in-out;
    margin: 0 20px 7px 0 !important;
}

/* ============================================
   ANIMATIONS
============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(0px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN - GENERAL
============================================ */

/* Ultra-wide screens (2K / 4K) */
@media (min-width: 1600px) {
    .hero-main-title {
        font-size: 4.2rem;
    }

    .hero-subheadline {
        font-size: 1.6rem;
    }

    .hero-main-description {
        font-size: 1.2rem;
    }

    .hero-main-content {
        max-width: 1400px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .why-us {
        padding: 10px 1%;
    }
}

/* Medium Desktop */
@media (max-width: 1024px) {
    .header-nav {
        padding: 0px 0 0px 5px !important;
        font-size: 20px !important;
    }

    .header-bar-nav {
        gap: 0 !important;
    }

    .cards-container {
        gap: 15px;
    }

    .card1,
    .card2,
    .card3 {
        flex: 1 1 calc(50% - 15px);
    }

    .why-us {
        padding: 0 3%;
    }

    .call h4 {
        padding: auto !important;
        font-size: 17px !important;
    }
}

/* Large laptops */
@media (max-width: 1200px) {
    .hero-main-content {
        padding: 0 20px;
    }

    .hero-features-grid {
        gap: 16px;
    }
}

/* Tablets & Large screens - responsive hero */
@media (max-width: 992px) {
    .hero-main-section {
        padding-top: 80px;
    }

    .hero-main-title {
        font-size: 2.8rem;
        margin-bottom: 40px;
    }

    .hero-subheadline {
        font-size: 1.2rem;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .erp-left h2 {
        font-size: 2rem;
    }

    .sections-container h1 {
        font-size: 2.5rem;
    }

    .content h1 {
        font-size: 2.3rem;
    }
}

/* Tablet Devices */
@media (min-width: 768px) {
    .erp-left,
    .erp-right {
        width: 45% !important;
    }

    .header-nav {
        padding: 0 0 0 100px !important;
    }

    .header-nav .call {
        color: white !important;
        background-color: #007bff;
    }

    .call {
        padding: 20px !important;
        color: white !important;
        font-size: 27px !important;
        font-weight: bold;
    }

    .header-bar-nav a {
        text-decoration: none !important;
        font-weight: bold !important;
        margin: 0 1em !important;
        transition: color 0.3s ease !important;
    }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
    .ringing-icon {
        font-size: 15px !important;
        color: white;
        animation: ring 1s infinite ease-in-out;
        margin: 0 !important;
    }

    .erp-container {
        padding: 0;
        font-size: small;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .erp-left,
    .erp-right {
        text-align: center;
    }

    .erp-divider {
        width: 80px;
        height: 3px;
        background-color: white;
        margin: 10px auto;
    }

    .erp-left h2 {
        font-size: 1.8rem;
    }

    .scroll-top {
        display: none;
    }

    .footer-container {
        padding: 12px 15px;
    }

    .heading {
        font-size: 28px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 14px;
    }

    .sections-container {
        padding: 30px 15px;
    }

    .sections-container h1 {
        font-size: 2rem;
    }

    .sections-container p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .cards-container {
        flex-direction: column;
        gap: 20px;
    }

    .card1,
    .card2,
    .card3 {
        flex: 1 1 100%;
    }

    .why-us h4,
    .why-us .top-line {
        text-align: center;
    }

    .header-nav {
        padding: 2px 0 5px 15px !important;
    }

    .header-nav .call {
        display: none;
    }

    .sidenav a {
        padding: 8px 8px 8px 22px;
        font-size: 15px !important;
    }

    .technology-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 25px;
        margin: 30px auto;
        gap: 35px;
    }

    .content {
        text-align: center;
        min-width: 100%;
    }

    .content h1 {
        font-size: 2rem;
        margin-top: 30px;
    }

    .content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        max-width: 100%;
    }

    .technology-section .feature-card {
        padding: 15px;
    }

    .technology-section .feature-card h4 {
        font-size: 16px;
    }

    .header-bar-nav {
        display: none;
    }

    .icon {
        display: block;
        padding: 0 10px 0 0 !important;
    }

    .help-btn {
        bottom: 15px;
        left: 15px;
        padding: 10px 20px;
        font-size: 16px;
        color: white !important;
    }

    .hero-main-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-subheadline {
        font-size: 1.05rem;
    }

    .hero-subheadline::after {
        width: 60px;
    }

    .hero-main-description {
        font-size: 1rem;
    }

    .hero-feature-item p {
        font-size: 1.05rem;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu-container {
        display: none;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .hero-main-content {
        padding: 0 16px;
    }

    .hero-main-title {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-main-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-feature-item {
        padding: 25px 20px;
    }

    .erp-left h2 {
        font-size: 1.5rem;
    }

    .sections-container h1 {
        font-size: 1.7rem;
    }

    .sections-container p {
        font-size: 1rem;
    }

    .content h1 {
        font-size: 1.7rem;
    }

    .feature-card {
        min-width: 280px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .sections-container h1 {
        font-size: 1.8rem;
    }

    .sections-container p {
        font-size: 0.9rem;
    }

    .help-btn {
        text-wrap: 10px;
        width: 15%;
        left: 5%;
        bottom: 5%;
        text-align: center;
        padding: 10px 0;
        font-size: 8px;
    }

    .hero-main-title {
        font-size: 1.6rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .hero-main-title {
        font-size: 1.35rem;
    }

    .hero-subheadline {
        font-size: 0.85rem;
    }

    .hero-feature-item p {
        font-size: 0.95rem;
    }
}

/* Hide mobile dropdown on desktop */
@media (min-width: 769px) {
    .mobile-dropdown {
        display: none;
    }
}