body{
    font-family: Arial, sans-serif;
}
:root{
    --primary:#0F766E;
    --secondary:#1F2937;
    --accent:#14B8A6;
    --white:#fff;
}

.navbar{
    background:var(--secondary);
    padding:15px 0;
    box-shadow:0 2px 15px rgba(0,0,0,.1);
}

.navbar-brand{
    color:var(--white)!important;
    font-size:28px;
    font-weight:700;
}

.navbar-brand span{
    color:var(--accent);
}

.nav-link{
    color:#fff !important;
    margin:0 10px;
    font-weight:500;
}

.nav-link:hover{
    color:var(--accent)!important;
}

.demo-btn{
    background:var(--primary);
    color:#fff;
    border-radius:30px;
    padding:10px 22px;
    text-decoration:none;
}

.demo-btn:hover{
    background:var(--accent);
    color:#fff;
}

.hero{
    padding-top: 100px; /* navbar space */
}
/* RESET */
body{
    margin: 0;
    font-family: Arial, sans-serif;
}

/* COLORS */
:root{
    --primary:#0F766E;
    --secondary:#1F2937;
    --accent:#14B8A6;
    --white:#fff;
}

/* NAVBAR */
.navbar{
    background: var(--secondary);
    padding: 15px 0;
}

.navbar-brand{
    color: var(--white)!important;
    font-size: 26px;
    font-weight: 700;
}

.navbar-brand span{
    color: var(--accent);
}

.nav-link{
    color: #fff !important;
    margin: 0 10px;
}

.nav-link:hover{
    color: var(--accent)!important;
}

/* HERO */
.hero{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1F2937, #0F766E);
    color: #fff;
    text-align: center;
    padding: 120px 20px 60px; /* navbar space */
}

.hero-content{
    max-width: 900px;
    margin: auto;
}

.hero-badge{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 20px;
    font-size: 14px;
}

/* HEADING */
.hero h1{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span{
    color: var(--accent);
}

.hero p{
    font-size: 18px;
    margin: 20px auto;
    max-width: 700px;
    color: #e5e7eb;
}

/* BUTTONS */
.hero-buttons{
    margin-top: 30px;
}

.btn-demo{
    background: var(--accent);
    padding: 14px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
}

.btn-outline-custom{
    border: 2px solid #fff;
    padding: 14px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
}

/* STATS */
.hero-stats{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-box{
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    min-width: 160px;
    backdrop-filter: blur(10px);
}

.stat-box h3{
    color: var(--accent);
    font-size: 28px;
    margin: 0;
}

.stat-box p{
    margin: 5px 0 0;
}

/* FEATURES SECTION */
.features{
    padding: 80px 20px;
    background: #f8f9fa;
    color: #1F2937;
}

.features h2{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.features p{
    margin-bottom: 50px;
    color: #555;
}

.feature-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature-card{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-card:hover{
    transform: translateY(-5px);
}

/* CONTACT SECTION */
.contact{
    padding: 90px 20px;
    background: #1F2937;
    color: #fff;
}

.contact-wrapper{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-info{
    flex: 1;
}

.contact-info h2{
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-info p{
    color: #d1d5db;
    margin-bottom: 30px;
}

.info-box{
    background: rgba(255,255,255,0.08);
    padding: 12px 18px;
    margin-bottom: 10px;
    border-radius: 10px;
}

/* FORM */
.contact-form{
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form textarea{
    height: 120px;
    resize: none;
}

.contact-form button{
    width: 100%;
    padding: 12px;
    border: none;
    background: #14B8A6;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover{
    background: #0F766E;
}

/* FOOTER */
.footer{
    background: #0F172A;
    color: #fff;
    padding: 70px 20px 20px;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-box h3,
.footer-box h4{
    margin-bottom: 15px;
}

.footer-box p{
    color: #cbd5e1;
    font-size: 14px;
}

.footer-box a{
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-box a:hover{
    color: #14B8A6;
}

.footer-bottom{
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 14px;
    color: #94a3b8;
}


/* ===== MODULES SECTION ===== */
.modules{
    padding: 90px 20px 60px;
    background: #f8f9fa;
}


/* TITLE */
.modules h2{
    font-size: 42px;
    font-weight: 800;
    color: #1F2937;
}

.modules p{
    color: #6b7280;
    margin-bottom: 40px;
}

/* GRID */

.module-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px; /* ADD THIS */
}

/* CARD */
.module-card{
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);

}
.module-section {
    margin-bottom: 60px;
}

/* HOVER EFFECT */
.module-card:hover{
    transform: translateY(-8px);
    border-color: #14B8A6;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ICON */
.module-card .icon{
    font-size: 40px;
    margin-bottom: 10px;
}

/* MAIN TITLE */
.module-card h3{
    color: #0F766E;
    margin-bottom: 15px;
}

/* BLOCK */
.module-block{
    text-align: left;
    margin-bottom: 15px;
    padding: 12px;
    background: #f3f4f6;
    border-radius: 10px;
}

/* BLOCK TITLE */
.module-block h4{
    color: #1F2937;
    margin-bottom: 8px;
    font-size: 15px;
}

/* LIST */
.module-block ul{
    padding-left: 18px;
    margin: 0;
}

.module-block ul li{
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 5px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px){
    .module-grid{
        grid-template-columns: 1fr;
    }

    .modules h2{
        font-size: 30px;
    }
}
/* WHY CHOOSE SECTION */
.why-choose{
    padding: 90px 20px;
    background: #0F172A;
    color: #fff;
}

.why-choose h2{
    font-size: 42px;
    font-weight: 800;
}

.why-choose p{
    color: #cbd5e1;
    margin-bottom: 50px;
}

/* GRID */
.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.why-card{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.why-card:hover{
    transform: translateY(-10px);
    border-color: #14B8A6;
    background: rgba(20,184,166,0.1);
}

/* ICON */
.why-card .icon{
    font-size: 40px;
    margin-bottom: 10px;
}

/* TITLE */
.why-card h3{
    color: #14B8A6;
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 992px){
    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .why-grid{
        grid-template-columns: 1fr;
    }
}
/* STATS SECTION */
.stats{
    padding: 90px 20px;
    background: #f8f9fa;
}

.stats h2{
    font-size: 42px;
    font-weight: 800;
    color: #1F2937;
}

.stats p{
    color: #6b7280;
    margin-bottom: 50px;
}

.stats-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats .stat-box{
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.stats .stat-box:hover{
    transform: translateY(-8px);
}

.stats .stat-box h3{
    font-size: 40px;
    color: #0F766E;
    margin-bottom: 10px;
}

.stats .stat-box p{
    margin: 0;
    color: #6b7280;
}

/* MOBILE */
@media (max-width: 992px){
    .stats-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .stats-grid{
        grid-template-columns: 1fr;
    }
}
.feature-icon{
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;
    transition: 0.3s ease;
}

.feature-card:hover .feature-icon{
    transform: scale(1.15) rotate(5deg);
    color: #198754;
}
.feature-card{
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid #eee;
}

.feature-icon{
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 15px;
    display: block;
    transition: all 0.4s ease;
}

.feature-card h3{
    color: #222;
    transition: all 0.4s ease;
}

.feature-card p{
    color: #666;
    transition: all 0.4s ease;
}

/* Hover Effect */
.feature-card:hover{
    background: #025554;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13,110,253,0.3);
}

.feature-card:hover .feature-icon{
    color: #ffd43b; /* Golden Yellow */
    transform: scale(1.15);
}

.feature-card:hover h3,
.feature-card:hover p{
    color: #fff;
}

.module-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px;
}

.modules .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}
.module-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:50px;

    width:95%;
    margin-left:auto;
    margin-right:auto;
}


.module-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
    text-align:left;
    border-top:4px solid #0d6efd;
}

.module-icon{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.module-card h3{
    margin-bottom:15px;
    font-weight:700;
}

.module-card ul{
    padding-left:18px;
}

.module-card li{
    margin-bottom:8px;
    color:#555;
}

.module-card:hover{
    background:#025554;
    transform:translateY(-10px);
}

.module-card:hover h3,
.module-card:hover li{
    color:#fff;
}

.module-card:hover .module-icon{
    color:#ffd43b;
}

.testimonials{
    padding:100px 0;
    background:#f8faff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#0b1d39;
}

.section-title p{
    color:#666;
    margin-top:10px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.testimonial-card::before{
    content:'❝';
    position:absolute;
    top:15px;
    right:20px;
    font-size:60px;
    color:rgba(13,110,253,.1);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    background:#025554;
}

.testimonial-card:hover p,
.testimonial-card:hover h4,
.testimonial-card:hover span{
    color:#fff;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin-bottom:15px;
}

.testimonial-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #020255;
}

.client h4{
    margin:0;
    font-size:18px;
    color:#0b1d39;
}

.client span{
    color:#777;
    font-size:14px;
}

.page-banner{
    background: linear-gradient(135deg,#025554,#038c8a);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.page-banner h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.page-banner p{
    max-width:800px;
    margin:auto;
    font-size:18px;
}

.dashboard-gallery{
    padding:80px 0;
    background:#f8f9fa;
}

.dashboard-gallery h2{
    text-align:center;
    margin-bottom:50px;
    font-weight:700;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.gallery-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.gallery-card:hover{
    transform:translateY(-10px);
}

.gallery-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-card h4{
    padding:20px;
    text-align:center;
    font-weight:600;
}

.module-info{
    padding:80px 0;
    max-width:1100px;
    margin:auto;
}

.module-info h2{
    color:#025554;
    font-weight:700;
    margin-bottom:20px;
}

.module-info p{
    line-height:1.8;
    color:#555;
}

.module-info ul{
    margin-top:20px;
}

.module-info li{
    margin-bottom:12px;
}

.benefits{
    background:#f8f9fa;
    padding:80px 0;
}

.benefits h2{
    text-align:center;
    margin-bottom:50px;
    font-weight:700;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.benefit-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    font-size:18px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}



.benefit-card:hover{
    background:#025554;
    color:#fff;
    transform:translateY(-10px);
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.gallery-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.gallery-card img{
    width:100%;
    height:350px;      /* sab images same size */
    object-fit:contain; /* screenshot cut nahi hogi */
    background:#f8f9fa;
    padding:10px;
}

.gallery-card h4{
    padding:15px;
    text-align:center;
    font-weight:600;
}
@media (max-width:768px){

    .module-grid{
        grid-template-columns:1fr !important;
    }

    .benefit-grid{
        grid-template-columns:1fr !important;
    }
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

/* Mobile */
@media (max-width:768px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        width:100%;
    }

    .gallery-card img{
        height:auto;
        max-height:300px;
    }
}

/* =========================
   ENTRY FEATURES
========================= */

.dashboard-gallery{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
    font-size:38px;
    font-weight:700;
    color:#025554;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    max-width:1100px;
    margin:auto;
}

.gallery-card{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s ease;
    border-top:4px solid #025554;
}

.gallery-card:hover{
    background:#025554;
    transform:translateY(-10px);
}

.gallery-card:hover h4,
.gallery-card:hover p{
    color:#fff;
}

.feature-icon{
    font-size:55px;
    color:#025554;
    margin-bottom:20px;
    transition:.4s;
}

.gallery-card:hover .feature-icon{
    color:#ffd43b;
    transform:scale(1.1);
}

.gallery-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.gallery-card p{
    color:#666;
    line-height:1.8;
}

/* Journal Card Center */

.journal-card{
    grid-column:1 / span 2;
    max-width:500px;
    width:100%;
    margin:auto;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .section-title{
        font-size:28px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .journal-card{
        grid-column:auto;
        max-width:100%;
    }

    .gallery-card{
        padding:25px;
    }

    .feature-icon{
        font-size:45px;
    }
}

/* =========================
   REPORT PAGE BANNER
========================= */

.page-banner{
    background: linear-gradient(135deg,#025554,#038c8a);
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.page-banner h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.page-banner p{
    max-width:800px;
    margin:auto;
    font-size:18px;
    opacity:.9;
}

/* =========================
   REPORT CARDS
========================= */

.dashboard-gallery{
    padding:80px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    font-size:40px;
    font-weight:700;
    color:#025554;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.gallery-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s ease;
    border-top:4px solid #025554;
}

.gallery-card:hover{
    background:#025554;
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(2,85,84,.25);
}

.gallery-card:hover h4,
.gallery-card:hover p{
    color:#fff;
}

.feature-icon{
    font-size:55px;
    color:#025554;
    margin-bottom:20px;
    transition:.4s;
}

.gallery-card:hover .feature-icon{
    color:#ffd43b;
    transform:scale(1.1);
}

.gallery-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.gallery-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* =========================
   BENEFITS SECTION
========================= */

.benefits{
    padding:80px 20px;
    background:#fff;
}

.benefits h2{
    text-align:center;
    font-size:38px;
    color:#025554;
    margin-bottom:50px;
    font-weight:700;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    max-width:1200px;
    margin:auto;
}

.benefit-card{
    background:#f8f9fa;
    padding:30px;
    border-radius:20px;
    text-align:center;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.4s;
}

.benefit-card:hover{
    background:#025554;
    color:#fff;
    transform:translateY(-8px);
}

/* =========================
   CTA SECTION
========================= */

.cta-section{
    background:linear-gradient(135deg,#025554,#038c8a);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta-section h2{
    font-size:40px;
    margin-bottom:15px;
}

.cta-section p{
    margin-bottom:25px;
    font-size:18px;
}

.cta-section .btn{
    background:#fff;
    color:#025554;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.cta-section .btn:hover{
    background:#ffd43b;
    color:#000;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .page-banner{
        padding:70px 20px;
    }

    .page-banner h1{
        font-size:30px;
    }

    .page-banner p{
        font-size:15px;
    }

    .section-title{
        font-size:28px;
    }

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .benefit-grid{
        grid-template-columns:1fr;
    }

    .gallery-card{
        padding:25px;
    }

    .feature-icon{
        font-size:45px;
    }

    .benefits h2,
    .cta-section h2{
        font-size:28px;
    }
}
/* HERO TITLE */
.page-banner h1{
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.page-banner p{
    font-size: 16px;
    color: #f1f1f1;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* SECTION TITLE */
.section-title{
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

/* CATEGORY HEADINGS (Financial Books, Ledger etc.) */
.report-category{
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
}

/* CARD IMPROVEMENT */
.gallery-card{
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.gallery-card:hover{
    transform: translateY(-6px);
}

.feature-icon{
    font-size: 30px;
    color: #3498db;
    margin-bottom: 10px;
}

/* BENEFITS */
.benefits h2{
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.benefit-card{
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.benefit-card:hover{
    background: #3fc29f;
}
/* GRID */
.erp-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* CARD */
.erp-card{
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: left;
}

.erp-card:hover{
    transform: translateY(-10px);
}

/* ICON */
.erp-card i{
    font-size: 40px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* TITLE */
.erp-card h3{
    text-align: center;
    margin-bottom: 15px;
}

/* LIST */
.erp-card ul{
    padding-left: 20px;
}

.erp-card ul li{
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

/* COLORS */
.master i{ color: #8e44ad; }
.entry i{ color: #27ae60; }
.report i{ color: #e67e22; }

/* MASTER HOVER */
.master:hover{
    background: #f3e8ff;
    transition: 0.3s ease;
}

/* ENTRY HOVER */
.entry:hover{
    background: #eafaf1;
    transition: 0.3s ease;
}

/* REPORT HOVER */
.report:hover{
    background: #fff4e6;
    transition: 0.3s ease;
}

/* OPTIONAL SMOOTH EFFECT */
.erp-card{
    transition: all 0.3s ease;
    cursor: pointer;
}
/* HERO */
.contact-hero{
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.contact-hero h1{
    font-size: 40px;
}

.contact-hero p{
    margin-top: 10px;
    color: #ddd;
}

/* GRID */
.contact-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* INFO BOX */
.contact-info h2,
.contact-form h2{
    margin-bottom: 20px;
}

.info-box{
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
}

.info-box i{
    color: #3498db;
    font-size: 18px;
}

/* GLOBAL */
body{
    color: #222;
    font-family: Arial, sans-serif;
}

/* HERO */
.contact-hero{
    background: linear-gradient(135deg, #0dd9a6, #074a3e);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.contact-hero h1{
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-hero p{
    color: #f1f1f1;
}

/* GRID */
.contact-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* HEADINGS */
.contact-info h2,
.contact-form h2{
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

/* INFO BOX */
.info-box{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.info-box:hover{
    background: #f1f9ff;
    transform: translateX(5px);
}

.info-box i{
    font-size: 18px;
    color: #0dd9a6;
    margin-top: 3px;
}

/* INFO TEXT */
.info-box p{
    color: #222;
    font-size: 15px;
    line-height: 1.5;
}

/* FORM */
.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: #888;
}

.contact-form button{
    padding: 12px;
    background: #026977;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.contact-form button:hover{
    background: #034f3c;
}

/* HERO */
.about-hero{
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.about-hero h1{
    font-size: 42px;
    margin-bottom: 10px;
}

.about-hero p{
    color: #ddd;
}

/* GRID */
.about-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* TEXT */
.about-text h2{
    margin-bottom: 10px;
    color: #1a1a1a;
}

.about-text p{
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

/* CARDS */
.about-boxes{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-card{
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.about-card:hover{
    transform: translateY(-5px);
    background: #f1f9ff;
}

.about-card i{
    font-size: 22px;
    color: #3498db;
    margin-bottom: 8px;
}

.about-card h3{
    margin-bottom: 5px;
}

.about-card p{
    font-size: 14px;
    color: #555;
}

.about-extra{
    margin-top: 50px;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.about-extra h2{
    color: #0F766E;
    margin-bottom: 10px;
}

.about-extra p{
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-extra ul{
    padding-left: 20px;
}

.about-extra ul li{
    margin-bottom: 8px;
    color: #333;
}

/* BUTTON */
.demo-btn{
    padding: 10px 18px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* MODAL BACKDROP */
.modal{
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* MODAL BOX */
.modal-content{
    background: #fff;
    width: 400px;
    max-width: 90%;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    animation: slideDown 0.3s ease;
}

/* CLOSE BUTTON */
.close{
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* FORM */
.modal-content form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content input,
.modal-content textarea{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.modal-content button{
    background: #3498db;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes slideDown{
    from{ transform: translateY(-50px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}
/* MODAL BACKDROP */
.modal{
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* MODAL BOX */
.modal-content{
    background: #fff;
    width: 400px;
    max-width: 90%;
    margin: 8% auto;
    padding: 25px;
    border-radius: 10px;
    position: relative;
    animation: popup 0.3s ease;
}

/* CLOSE BUTTON */
.close{
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* FORM */
.modal-content form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-content input,
.modal-content textarea{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.modal-content button{
    background: #3498db;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes popup{
    from{ transform: translateY(-40px); opacity: 0; }
    to{ transform: translateY(0); opacity: 1; }
}

.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 999999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.footer{
    position: relative;
    z-index: 1;
}

.modal{
    z-index: 99999;
}

/* PAGE BASE */
body{
    font-family: Arial, sans-serif;
    color: #222;
    background: #f6f8fb;
}

/* SECTION TITLE */
.contact-info h2{
    font-size: 26px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-info p{
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* INFO BOX */
.info-box{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

/* ICON */
.info-box i{
    font-size: 18px;
    color: #0dd9a6;
    margin-top: 3px;
}

/* TEXT */
.info-box span{
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* HOVER EFFECT */
.info-box:hover{
    background: #f1fffb;
    transform: translateX(6px);
    border-color: #0dd9a6;
}

/* CONTACT FORM */
.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea{
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

/* FOCUS EFFECT */
.contact-form input:focus,
.contact-form textarea:focus{
    border-color: #0dd9a6;
    box-shadow: 0 0 5px rgba(13,217,166,0.3);
}

/* BUTTON */
.contact-form button{
    padding: 12px;
    background: #0dd9a6;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.contact-form button:hover{
    background: #0bbf92;
    transform: scale(1.02);
}

/* PAGE BACKGROUND */
.contact-page{
    padding: 60px 0;
    background: #f6f8fb;
}

/* GRID */
.contact-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* INFO BOX */
.contact-info h2{
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-info p{
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-box{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.info-box i{
    font-size: 18px;
    color: #0dd9a6;
    margin-top: 3px;
}

.info-box span{
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.info-box:hover{
    background: #f1fffb;
    transform: translateX(5px);
}

/* QUERY BOX */
.query-box{
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.query-box h2{
    margin-bottom: 10px;
}

.query-box p{
    margin-bottom: 20px;
    color: #555;
}

/* FORM */
.query-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.query-form input,
.query-form textarea{
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.query-form input:focus,
.query-form textarea:focus{
    border-color: #0dd9a6;
    box-shadow: 0 0 5px rgba(13,217,166,0.3);
}

/* BUTTON */
.query-form button{
    padding: 12px;
    background: #0dd9a6;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 15px;
}

.query-form button:hover{
    background: #0bbf92;
    transform: scale(1.02);
}
.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
}

.whatsapp-float i{
    color: white;
}
.map-section{
    padding:60px 0;
    background:#f6f8fc;
    text-align:center;
}

.map-section h2{
    font-size:28px;
    margin-bottom:10px;
}

.map-section p{
    color:#666;
    margin-bottom:20px;
}

.map-box{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
}
