* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 1rem 2rem;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a472a !important;
    letter-spacing: -1px;
}

.nav-link {
    color: #1a1a1a !important;
    font-weight: 600;
    margin: 0 8px;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #10b981;
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.btn-get-quote {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white !important;
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.btn-get-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Hero Section */
.nic-hero {
    background-color: #ffffff;
    padding: 80px 0;
}

.nic-hero-title {
    font-size: 44px;
    font-weight: 700;
    color: #245c1d; /* NIC Green */
    margin-bottom: 20px;
}

.nic-hero-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    max-width: 520px;
}

/* CAROUSEL */
.nic-carousel-wrapper {
    background: #f3f3f3;
    padding: 8px;
    border-radius: 6px;
}

.nic-carousel-wrapper img {
    border-radius: 4px;
    object-fit: cover;
}

/* INDICATORS */
.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #aaa;
}

.carousel-indicators .active {
    background-color: #245c1d;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nic-hero-title {
        font-size: 34px;
    }
}
/* Trust Badges */
.trust-section {
    padding: 50px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 10px;
}

.trust-text {
    font-weight: 600;
    color: #1a1a1a;
}

/* Services- section */
.services-hero {
    background: linear-gradient(135deg, #2d5f4f 0%, #3d7a63 100%);
    min-height: 250px;
    display: flex;
    align-items: center;
}

.services-full-section {
    background-color: #f8f9fa;
}

.service-card-horizontal {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.service-card-horizontal .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-horizontal .card-title {
    font-size: 1.5rem;
    color: #212529;
}

.service-card-horizontal .btn-outline-dark {
    border: 1.5px solid #333;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-card-horizontal .btn-outline-dark:hover {
    background-color: #333;
    color: #fff;
}

.service-card-horizontal img {
    object-fit: cover;
    min-height: 100%;
}

@media (max-width: 767px) {
    .service-card-horizontal .col-md-5 {
        height: 200px;
    }

    .services-hero {
        min-height: 200px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }
}

/* service-preview  */
.services-preview-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
}

.btn-see-all {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 0.65rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-see-all:hover {
    background-color: #000;
    color: #fff;
}

.service-preview-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
}

.service-preview-card .card-img-top {
    height: 240px;
    object-fit: cover;
}

.service-preview-card .card-title {
    font-size: 1.25rem;
    color: #212529;
}

.service-preview-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-learn-more {
    background-color: transparent;
    color: #000;
    border: 1.5px solid #000;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-learn-more:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 991px) {
    .services-preview-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .service-preview-card .card-img-top {
        height: 200px;
    }
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-box {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-box h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a472a;
    margin-bottom: 10px;
}

.process-box p {
    color: #666;
    font-size: 0.9rem;
}

.process-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    color: #10b981;
    font-size: 1.5rem;
    display: none;
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }

    .process-box:last-child .process-arrow {
        display: none;
    }
}

/* Mobile App Section */
.mobile-app-section {
    background-color: #fff;
    padding: 80px 0;
}

.phone-mockup-wrapper {
    position: relative;
    display: inline-block;
}

.phone-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(45, 95, 79, 0.1);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
}

.circle-2 {
    width: 550px;
    height: 550px;
    top: -275px;
    left: -275px;
}

.phone-mockup {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}

.phone-mockup img {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.app-content {
    padding: 0 20px;
}

.app-title {
    font-size: 2.5rem;
    color: #212529;
}

.app-description {
    font-size: 1.125rem;
    color: #6c757d;
    line-height: 1.8;
}

.feature-item {
    font-size: 1rem;
    color: #212529;
}

.feature-icon {
    color: #2d5f4f;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.download-buttons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-buttons a:hover {
    transform: translateY(-3px);
}

.download-buttons img {
    height: 50px;
    width: auto;
}

@media (max-width: 991px) {
    .app-title {
        font-size: 2rem;
    }

    .phone-mockup {
        max-width: 250px;
    }

    .circle-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -150px;
    }

    .circle-2 {
        width: 420px;
        height: 420px;
        top: -210px;
        left: -210px;
    }

    .app-content {
        text-align: center;
        padding: 0;
    }

    .feature-item {
        justify-content: center;
    }

    .download-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .mobile-app-section {
        padding: 60px 0;
    }

    .app-title {
        font-size: 1.75rem;
    }

    .app-description {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    background-color: #f5f3e8;
    padding: 48px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.0625rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

.cta-link {
    color: #2d5f4f;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #1d3f2f;
}

.btn-cta {
    background-color: #2d5f4f;
    color: #fff;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: #234a3d;
    color: #fff;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 40px 0;
    }

    .col-lg-3.text-end {
        text-align: center !important;
    }

    .btn-cta {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 1.75rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* Footer */
.nic-footer {
    background-color: #245c1d; /* NIC green */
    color: #d9e6d4;
    padding: 60px 0 20px;
    font-size: 15px;
}

.nic-footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.nic-footer p {
    line-height: 1.7;
}

.footer-links,
.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contacts li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #d9e6d4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contacts i {
    margin-right: 10px;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #cfe0c9;
}

/* Management Section Green Theme */
#management {
    background-color: #f3faf5; /* light green background */
}

#management .section-title {
    color: #1b5e20; /* dark green */
}

#management .icon-wrapper i {
    color: #2e7d32 !important; /* primary green */
}

#management .management-card {
    border-top: 4px solid #2e7d32;
    transition: all 0.3s ease;
}

#management .management-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

#management h4 {
    color: #1b5e20;
}

#management p {
    color: #4e6e57;
}

/* ABOUT SECTION GREEN THEME */
#about {
    background-color: #ffffff;
}

/* Section Title */
#about .section-title {
    color: #1b5e20;
}

/* Headings */
#about h3,
#about h6 {
    color: #1b5e20;
}

/* Primary Icons */
#about .text-primary {
    color: #2e7d32 !important;
}

/* About Image Overlay */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(46, 125, 50, 0.15);
    border-radius: 0.5rem;
}

/* Vision Card (Green Background) */
#about .vision-mission-card.bg-primary {
    background: linear-gradient(135deg, #1b5e20, #2e7d32) !important;
}

/* Mission Card */
#about .vision-mission-card.border {
    border: 2px solid #2e7d32 !important;
}

#about .vision-mission-card h3.text-primary {
    color: #1b5e20 !important;
}

/* Core Values Section */
#about .core-values-section {
    background-color: #f3faf5;
}

/* Core Value Items */
#about .value-item {
    border-radius: 8px;
    transition: all 0.3s ease;
}

#about .value-item:hover {
    background-color: #e8f5e9;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
}

/* Text Muted Adjustment */
#about .text-muted {
    color: #4e6e57 !important;
}

/* CONTACT SECTION GREEN THEME */
#contact {
    background-color: #f3faf5; /* light green background */
}

/* Section Title */
#contact .section-title {
    color: #1b5e20;
}

/* Lead text */
#contact .lead {
    color: #4e6e57;
}

/* Info Cards */
#contact .info-card {
    border-top: 4px solid #2e7d32;
    transition: all 0.3s ease;
}

#contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.15);
}

/* Info Card Icons */
#contact .info-card .text-primary {
    color: #2e7d32 !important;
}

/* Contact Form Wrapper */
#contact .contact-form-wrapper {
    border-top: 4px solid #2e7d32;
}

/* Form labels & icons */
#contact .form-floating label {
    color: #1b5e20;
}

#contact .form-floating input,
#contact .form-floating textarea {
    border: 1px solid #c8e6c9;
}

#contact .form-floating input:focus,
#contact .form-floating textarea:focus {
    border-color: #2e7d32;
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

/* Button */
#contact .btn-primary {
    background-color: #2e7d32;
    border-color: #2e7d32;
    transition: all 0.3s ease;
}

#contact .btn-primary:hover {
    background-color: #1b5e20;
    border-color: #1b5e20;
}

/* Alert Messages */
#contact .alert-success {
    background-color: #dcedc8;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

/* Links in info cards */
#contact .info-card a {
    color: #2e7d32 !important;
    text-decoration: none;
}

#contact .info-card a:hover {
    text-decoration: underline;
}

/* Map Overlay if needed */
.map-wrapper iframe {
    border: 2px solid #2e7d32;
    border-radius: 8px;
}
/* Hero Section Image */
.hero-img-wrapper {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical align with text */
    height: 100%;
}

.hero-image {
    max-width: 100%;       /* fill the column but not exceed it */
    width: 400px;          /* fixed max width for large screens */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    object-fit: cover;
}



