* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #131627;
    --muted: #6b7180;
    --line: #e9ebf2;
    --brand: #3a5bff;
    --brand-dark: #2a44d6;
    --accent: #00c2a8;
    --header-from: #0b1742;
    --header-via: #12245e;
    --header-to: #1a3480;
    --header-text: #ffffff;
    --header-text-muted: rgba(255,255,255,0.72);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header & Navigation */
/* ================= HEADER ================= */
header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    background: #1d1d1d;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

    header.scrolled {
        box-shadow: 0 8px 30px rgba(19,22,39,0.08);
    }

nav {
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
}

    .logo-icon img {
        height: 44px;
        width: auto;
        display: block;
    }
        /* fallback mark shown if the logo image fails to load */
        .logo-icon img.fallback-hidden {
            display: none;
        }

.logo-fallback {
    display: none;
    align-items: center;
    gap: 10px;
}

    .logo-fallback .mark {
        width: 40px;
        height: 40px;
        border-radius: 11px;
        background: linear-gradient(135deg,var(--brand),var(--accent));
        box-shadow: 0 6px 16px rgba(58,91,255,0.35);
    }

    .logo-fallback .logo-text {
        font-weight: 800;
        font-size: 19px;
        color: var(--ink);
        letter-spacing: -0.01em;
    }

/* ---------- Nav links ---------- */
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin:0;
}

    .nav-links > li {
        position: relative;
    }

        .nav-links > li > a {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 10px 16px;
            color: #7cb342;
            font-weight: 500;
            font-size: 14.5px;
            text-decoration: none;
            border-radius: 8px;
            position: relative;
            transition: color 0.2s ease, background 0.2s ease;
        }

            .nav-links > li > a::after {
                content: '';
                position: absolute;
                left: 16px;
                right: 16px;
                bottom: 5px;
                height: 2px;
                background: #7cb342;
                border-radius: 2px;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.25s ease;
            }

            .nav-links > li > a:hover {
                color: #7cb342;
                background: rgba(58,91,255,0.06);
            }

                .nav-links > li > a:hover::after {
                    transform: scaleX(1);
                }

.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
    display: inline-block;
    color: #7cb342;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: #7cb342;
}

/* ---------- Dropdown panel ---------- */
.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 5px;
    box-shadow: 0 20px 45px rgba(19,22,39,0.14);
    /* padding:8px; */
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 10px 14px;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0px;
    transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}

    .dropdown-content a:hover {
        background: #7cb3421f;
        color: #7cb342;
        padding-left: 18px;
    }

/* ---------- Register button ---------- */
.register-btn {
    background: linear-gradient(120deg, #198754, #7cb342) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 20px rgba(58,91,255,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

    .register-btn::after {
        display: none;
    }

    .register-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px #7cb34275;
        background: linear-gradient(120deg, #75b798, #198754) !important;
        color: #fff !important;
    }

/* ---------- Mobile menu icon ---------- */
.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    border-radius: 9px;
    transition: background 0.2s ease;
}

    .mobile-menu:hover {
        background: rgba(58,91,255,0.08);
    }

    .mobile-menu span {
        display: block;
        width: 22px;
        height: 2px;
        background: #7cb342;
        margin: 0 auto;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* ================= RESPONSIVE ================= */
@media (max-width:960px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(320px, 82vw);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 90px 20px 30px;
        box-shadow: -20px 0 50px rgba(19,22,39,0.18);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(.4,.15,.2,1);
        overflow-y: auto;
    }

        .nav-links.open {
            transform: translateX(0);
        }

        .nav-links > li {
            width: 100%;
        }

            .nav-links > li > a {
                width: 100%;
                padding: 14px 12px;
                justify-content: space-between;
                border-bottom: 1px solid var(--line);
                border-radius: 0;
            }

                .nav-links > li > a::after {
                    display: none;
                }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 10px;
        transition: max-height 0.3s ease;
    }

    .dropdown.open .dropdown-content {
        max-height: 400px;
        padding: 6px 0 6px 10px;
    }

    .dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--brand);
    }

    .register-btn {
        margin-top: 14px;
        text-align: center;
        justify-content: center !important;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(19,22,39,0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
}

@media (max-width:480px) {
    nav {
        padding: 12px 16px;
    }

    .logo-icon img {
        height: 36px;
    }
}

/* Banner Slider */
/*.banner-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;*/
    /* margin-top: 56px; */
/*}*/

.banner-slider {
    position: relative;
    width: 100%;
/*    height: 100vh;*/
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    display: none;
}

    .slide.active {
        display: block;
    }



    .slide-content img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Image poori screen cover karegi */
        display: block;
    }

/*.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}*/
.slide h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInDown 0.8s;
}

.slide p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.8s;
}

.slide-btn {
    background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    animation: slideInUp 0.8s 0.3s backwards;
}

    .slide-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
    }

.slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23667eea" width="1200" height="600"/></svg>');
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.9) 0%, rgba(245, 87, 108, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f093fb" width="1200" height="600"/></svg>');
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.9) 0%, rgba(56, 249, 215, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%2343e97b" width="1200" height="600"/></svg>');
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(108, 172, 69, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

    .slider-dot.active {
        background: rgb(108 172 69);
        width: 30px;
        border-radius: 6px;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(108, 172, 69, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    z-index: 10;
}

    .slider-arrow:hover {
        background: rgba(108, 172, 69, 0.8);
    }

    .slider-arrow.prev {
        left: 20px;
    }

    .slider-arrow.next {
        right: 20px;
    }

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Slider */

:root {
    --ink: #12141c;
    --muted: #9aa0b4;
    --accent: #5eead4;
    --card-bg: #1a1d29;
    --font-display: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

.services-scroller {
    /* max-width:1200px; */
    margin: 0 auto;
    padding: 3rem 20px;
}

.scroller-title {
    font-weight: 800;
    font-size: clamp(24px,4vw,36px);
    text-align: center;
    margin-bottom: 34px;
    letter-spacing: -0.01em;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.scroller-container {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* padding:8px 4px 20px; */
    flex: 1;
    scrollbar-width: none;
}

    .scroller-container::-webkit-scrollbar {
        display: none;
    }

/* ---------- Card ---------- */
.service-scroll-card {
    position: relative;
    flex: 0 0 280px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    /* background:var(--card-bg); */
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

    .service-scroll-card .card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: transform 0.6s cubic-bezier(.16,1,.3,1);
    }

    /* dark gradient overlay covering the lower 50% for text legibility */
    .service-scroll-card .overlay {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(10,12,20,0) 0%, rgba(10,12,20,0.55) 35%, rgba(10,12,20,0.94) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px 20px 22px;
        transition: height 0.45s cubic-bezier(.16,1,.3,1), background 0.45s ease;
    }

    .service-scroll-card .icon-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255,255,255,0.14);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: transform 0.4s ease, background 0.4s ease;
    }

    .service-scroll-card h4 {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 18px;
        color: #fff;
        margin-bottom: 8px;
        transition: color 0.35s ease;
    }

    .service-scroll-card p {
        font-size: 13px;
        line-height: 1.55;
        color: rgba(255,255,255,0.75);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.45s ease, opacity 0.35s ease 0.05s;
        margin-bottom: 5px;
    }

    .service-scroll-card a {
        text-decoration: none;
        font-size: 13px;
        line-height: 1.55;
        color: var(--accent);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.45s ease, opacity 0.35s ease 0.05s;
        padding: 0.51rem 0;
    }

    /* ---------- Hover state ---------- */
    .service-scroll-card:hover .card-img {
        transform: scale(1.12);
    }

    .service-scroll-card:hover .overlay {
        height: 100%;
        background: linear-gradient(180deg, rgba(10,14,24,0.35) 0%, rgba(10,14,24,0.55) 30%, rgba(10,14,24,0.96) 100%);
    }

    .service-scroll-card:hover h4 {
        color: var(--accent);
    }

    .service-scroll-card:hover p {
        max-height: 120px;
        opacity: 1;
    }

    .service-scroll-card:hover a {
        max-height: 120px;
        opacity: 1;
    }

    .service-scroll-card:hover .icon-badge {
        transform: translateY(-2px) scale(1.05);
        background: rgba(94,234,212,0.22);
    }

/* ---------- Nav buttons ---------- */
.slider-btn {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

    .slider-btn:hover {
        background: rgba(94,234,212,0.18);
        transform: translateY(-2px);
    }

    .slider-btn:active {
        transform: translateY(0);
    }

/* ---------- Indicators ---------- */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

    .slider-indicators span {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(17, 17, 17, 0.5);
        transition: background 0.25s, width 0.25s;
    }

        .slider-indicators span.active {
            background: rgb(93 147 51);
            width: 22px;
            border-radius: 4px;
        }

/* ---------- Responsive ---------- */
@media (max-width:768px) {
    .service-scroll-card {
        flex: 0 0 230px;
        height: 300px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width:480px) {
    .service-scroll-card {
        flex: 0 0 200px;
        height: 280px;
    }

    .scroller-title {
        margin-bottom: 22px;
    }

    .slider-wrapper {
        gap: 8px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 2rem;
    text-align: center;
    color: white;
    background: url("../images/slider2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -70px;
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        animation: fadeInUp 1s;
        color: #343a40;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        animation: fadeInUp 1s 0.2s backwards;
        color: #394048;
    }

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s backwards;
}

.tag {
    background: rgb(255 255 255 / 63%);
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    color: #0056bf;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d2d2d;
}

.services {
    padding: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.read-more {
    background: linear-gradient(135deg, #7cb342 0%, #558b2f 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

    .read-more:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
    }

/* About Section */
.about {
    padding: 100px 2rem;
    /* background:
        linear-gradient(rgba(0, 56, 120, 0.6), rgba(0, 56, 120, 0.6)),
        url("../images/banner_bg.jpg"); */
    background: linear-gradient(rgba(0, 56, 120, 0.6), #e9ecefc7), url(../images/banner_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.about-text p {
    color: #3c3636;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

    .feature-item h4 {
        color: #7cb342;
        margin-bottom: 0.5rem;
    }

.about-image {
    border-radius: 1rem;
    border: 5px solid #fff;
    overflow: hidden;
    position: relative;
}

    .about-image img {
        border-radius: 0.6rem;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .about-image:hover img {
        transform: scale(1.1);
    }

/* Templates Section */
.templates {
    padding: 100px 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.template-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

    .template-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.template-img {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    font-size: 3rem;
    color: white;
}

    .template-img img {
        width: 100%;
    }

.template-info {
    padding: 1.5rem;
    background: #fff;
}

    .template-info h3 {
        margin-bottom: 0.5rem;
        color: #2d2d2d;
    }

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #7cb342;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

    .footer-section a:hover {
        color: #7cb342;
    }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*ERP CSS Start*/
.erp-section {
    background: #f5f7fb;
    min-height: 100vh;
}

.erp-image-card {
    background: #fff;
    border-radius: 20px;
    padding: 7px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .4s;
}

    .erp-image-card:hover {
        transform: translateY(-10px);
    }

    .erp-image-card img {
        width: 100%;
        height: 340px;
        border-radius: 20px;
    }

    .erp-image-card h3 {
        color: #2e7d32;
        font-weight: 700;
    }

h1 {
    color: #2e7d32;
    font-weight: 700;
}

.title-line {
    width: 100px;
    height: 5px;
    background: #ffc107;
    margin: 20px 0;
    border-radius: 10px;
}

.section-title {
    font-weight: 700;
    color: #2e7d32;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        background: #2e7d32;
        color: #fff;
    }

    .feature-card i {
        font-size: 40px;
        margin-bottom: 20px;
        color: #ffc107;
    }

.module-card {
    background: #fff;
    border-left: 5px solid #2e7d32;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}

    .module-card:hover {
        transform: scale(1.05);
    }

    .module-card i {
        font-size: 38px;
        color: #2e7d32;
        margin-bottom: 20px;
    }

    .module-card h4 {
        font-weight: 700;
    }

p {
    color: #555;
    line-height: 1.8;
}

@media(max-width:768px) {

    h1 {
        font-size: 30px;
    }

    .erp-image-card img {
        width: 140px;
    }
}

/* Inner Banner */

.inner-banner {
    height: 380px;
    background: linear-gradient( rgba(0,0,0,.55), rgba(0,0,0,.55) ), url('/content/images/slider2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}


.banner-content {
    color: white;
    text-align: center;
    width: 100%;
}


    .banner-content h1 {
        color: white;
        font-size: 48px;
        font-weight: 800;
        animation: slideDown 1s ease;
    }


    .banner-content p {
        color: #fff;
        font-size: 20px;
        margin-top: 15px;
    }


.breadcrumb {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
    color: #ffc107;
    font-weight: 600;
}


    .breadcrumb i {
        margin-top: 5px;
    }


/* Animation */

@keyframes slideDown {

    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Mobile Responsive */

@media(max-width:768px) {

    .inner-banner {
        height: 280px;
    }


    .banner-content h1 {
        font-size: 32px;
    }


    .banner-content p {
        font-size: 16px;
    }
}

/*About US CSS*/

.about-section {
    background: #f7f9fc;
}


.about-image {
    padding: 7px;
    animation: float 4s infinite ease-in-out;
}


    .about-image img {
        height:380px;
    }




@keyframes float {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}




.content-card,
.info-card,
.mission-box {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}



h2, h3 {
    color: #4d8b35;
    font-weight: 700;
}



.line {
    width: 100px;
    height: 4px;
    background: #f39c12;
    margin: 15px 0 25px;
    border-radius: 10px;
}



p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}




/* Vision Mission */


.info-card {
    height: 100%;
    transition: .4s;
}


    .info-card:hover {
        transform: translateY(-10px);
    }



.icon {
    width: 70px;
    height: 70px;
    background: #4d8b35;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 20px;
}




.mission-box {
    border-left: 6px solid #4d8b35;
}




@media(max-width:768px) {


    .banner-content h1 {
        font-size: 35px;
    }


    .inner-banner {
        height: 280px;
    }


    .content-card,
    .info-card,
    .mission-box {
        padding: 25px;
    }
}

/*SEO Page CSS*/
body {
    font-family: Poppins,sans-serif;
    background: #f7f9fc;
}


/* Banner */

.seo-banner {
    height: 380px;
    background: linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)), url('/content/images/slider2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.banner-text {
    text-align: center;
    color: white;
}

    .banner-text h1 {
        font-size: 55px;
        font-weight: 700;
    }

    .banner-text p {
        font-size: 22px;
    }



/* Section */

.seo-section {
    background: white;
}


.heading-line {
    width: 90px;
    height: 4px;
    background: #4CAF50;
    margin: 20px 0;
    border-radius: 20px;
}



.section-title {
    font-weight: 700;
    color: #333;
    position: relative;
}
    .section-title::after {
        content: "";
        width: 15%;
        height: 2px;
        border-bottom: 4px solid;
        color: #4CAF50;
        position: absolute;
        bottom: -10px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        ;
    }



.seo-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
}


    .seo-card:hover {
        background: #4CAF50;
        color: white;
        transform: translateY(-10px);
    }
    .seo-card:hover p {
        color: white;
    }


    .seo-card i {
        font-size: 50px;
        margin-bottom: 20px;
        color: #4caf50;
    }
    .seo-card:hover i {
        color:white;
    }



    .strategy-box {
        background: #eef7ff;
        padding: 40px;
        border-radius: 20px;
    }



.strategy-card {
    background: white;
    padding: 25px;
    border-left: 5px solid #1e88e5;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    transition: .4s;
}


    .strategy-card:hover {
        transform: translateX(10px);
    }


    .strategy-card i {
        font-size: 30px;
        color: #1e88e5;
        margin-right: 15px;
    }



    .strategy-card h5 {
        display: inline-block;
        font-weight: 600;
    }



@media(max-width:768px) {

    .banner-text h1 {
        font-size: 35px;
    }

    .banner-text p {
        font-size: 18px;
    }

    .seo-banner {
        height: 280px;
    }
}






/* Responsive */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

/*    .banner-slider {
        height: 400px;
    }*/

    .slide h1 {
        font-size: 2rem;
    }

    .slide p {
        font-size: 1rem;
    }

    .slider-arrow {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }

    .slider-wrapper {
        padding: 0 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

        .slider-btn.prev-btn {
            left: -10px;
        }

        .slider-btn.next-btn {
            right: -10px;
        }

    .service-scroll-card {
        min-width: 280px;
        padding: 2rem;
    }

    /* .dropdown-content {
        position: static;
        display: none;
        background: #2d2d2d;
        margin-top: 0.5rem;
        border-radius: 5px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    } */

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}
