* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f6f8;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ===== NAVBAR ===== */
.navbar {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    z-index: 100;
    overflow: visible; /* ✅ IMPORTANT */
}

/* Container */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo h2 {
    font-size: 22px;
    margin: 0;
}

.logo a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
}

/* ===== NAV MENU ===== */
#navMenu {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    overflow: visible; /* ✅ IMPORTANT */
}

/* Links */
#navMenu a {
    text-decoration: none;
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: relative;
}

/* dropdown trigger */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ✅ invisible bridge (FIX hover break) */
.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
}

/* ===== DROPDOWN BOX ===== */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;

    width: 260px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

/* ✅ OPEN STATE */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== DROPDOWN ITEMS ===== */
.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: #111;
}

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* ===== BUTTON ===== */
.nav-btn {
    background: #16a34a;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
}

.nav-btn:hover {
    background: #15803d;
}

/* ===== DROPDOWN ICON ===== */
.dropdown i {
    font-size: 12px;
    color: #444;
}
.menu-toggle {
    display: none;
}
/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {

    /* show hamburger */
    .menu-toggle {
        display: block;
        font-size: 26px;
        cursor: pointer;
    }

    /* hide menu by default */
    #navMenu {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;

        display: none; /* ✅ hidden initially */
    }

    /* show when active */
    #navMenu.active {
        display: flex;
    }

    /* menu links */
    #navMenu a {
        width: 100%;
        padding: 12px 0;
    }

    /* dropdown box */
    .dropdown-content {
        position: static; /* ✅ IMPORTANT */
        box-shadow: none;
        border: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    /* open dropdown */
    .dropdown.active .dropdown-content {
        display: block;
    }

    /* remove hover behavior */
    .dropdown:hover .dropdown-content {
        display: none;
    }
}

/* ✅ Hero */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    gap: 40px;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}


.hero-left {
    max-width: 700px;
}

.badge {
    background: #e6f7ee;
    color: #22c55e;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 12px;
}

.hero h1 {
    font-size: 45px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, red, orange, green, blue);
    -webkit-background-clip: text;
    color: transparent;
}

.hero p {
    color: #555;
    margin-bottom: 25px;
    font-size: 15px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tags span {
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 20px;
    margin-right: 8px;
    font-size: 12px;
}

/* ✅ Image section */
.hero-right {
    position: relative;
}

.hero-right img {
    width: 450px;
    border-radius: 20px;
}

.overlay-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {

    /* ✅ ADD SIDE PADDING (VERY IMPORTANT) */
    .hero {
        padding: 40px 20px;
    }

    /* ✅ CONTAINER STACK */
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    /* ✅ FIX HEADING */
    .hero h1 {
        font-size: 30px;
        line-height: 1.35;
        max-width: 95%;
        margin: 0 auto;
    }

    /* ✅ PREVENT TEXT OVERFLOW */
    .gradient-text {
        display: inline;
        word-break: normal;
    }

    /* ✅ PARAGRAPH READABILITY */
    .hero p {
        font-size: 15px;
        line-height: 1.7;
        max-width: 320px;   /* ✅ tighter width like modern UI */
        margin: 15px auto 20px;
    }

    /* ✅ BUTTON SPACING */
    .hero-buttons {
        justify-content: center;
    }

    .btn-primary {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* ✅ IMAGE (if visible later) */
    .hero-right {
        margin-top: 10px;
    }

    .hero-right img {
        width: 90%;
        max-width: 300px;
        border-radius: 16px;
    }

    /* ✅ CARD FIX */
    .overlay-card {
        position: static;
        margin-top: 15px;
        text-align: center;
    }
}


/* ✅ Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #eef2f5;
    padding: 50px 60px;
    text-align: center;
}

.stat-box {
    flex: 1;
}

.stat-box h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #0f172a;
}

.stat-box p {
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 768px) {

    .stats {
        flex-direction: column;
        gap: 25px;
        padding: 40px 20px;
    }

    .stat-box h2 {
        font-size: 28px;
    }
}

/* ✅ Services Section */
.services {
    padding: 80px;
}

/* Header */
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.subtitle {
    color: #22c55e;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
}

.services-header h2 {
    font-size: 32px;
    margin-top: 10px;
}

.view-all {
    color: #22c55e;
    text-decoration: none;
    font-size: 14px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Cards */
.service-card {
    background: #f7f8fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #22c55e;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    color: #555;
    font-size: 14px;
}
@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .services {
        padding: 50px 20px;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* ✅ Why Choose Us */
.why-us {
    padding: 80px 60px;
    background: #f5f6f8;
}

.why-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/* LEFT */
.why-left {
    flex: 1;
    max-width: 550px;
}

.why-left h2 {
    font-size: 36px;
    margin: 15px 0;
    line-height: 1.3;
}

.why-left p {
    color: #555;
    margin-bottom: 20px;
}

.learn-more {
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
}

/* RIGHT GRID */
.why-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* CARD */
.why-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.why-card .icon {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 10px;
}

.why-card h4 {
    margin-bottom: 5px;
}

.why-card p {
    font-size: 14px;
    color: #555;
}
@media(max-width: 992px) {
    .why-container {
        flex-direction: column;
    }

    .why-left h2 {
        font-size: 28px;
    }
}

@media(max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ✅ Popular Services *//* ✅ margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    margin-top: 10px;
}

.view-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 14px;
}

/* Grid */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.popular-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: 0.3s;
}

.popular-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Badge */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dcfce7;
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
}

/* Text */
.popular-card h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 18px;
}

.popular-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.popular-card a {
    color: #22c55e;
    text-decoration: none;
    font-size: 14px;
}
@media(max-width: 992px) {
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.popular-services {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}   


@media(max-width: 768px) {

    .popular-services {
        padding: 50px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }
}
/* ✅ FAQ Section */
.faq {
    padding: 80px 60px;
    background: #f5f6f8;
}

.faq-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.faq-left {
    flex: 1;
    max-width: 450px;
}

.faq-left h2 {
    font-size: 36px;
    margin: 15px 0;
}

.faq-left p {
    color: #555;
    margin-bottom: 20px;
}

/* RIGHT */
.faq-right {
    flex: 1;
}

/* FAQ ITEM */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

/* Arrow */
.faq-question::after {
    content: "⌄";  /* ✅ this matches your icon */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    font-size: 18px;
    color: #666;  /* lighter like your image */
    font-weight: 400;
}
.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
}
/* Answer */
.faq-answer {
    display: none;
    margin-top: 10px;
    color: #555;
    font-size: 14px;
}
@media(max-width: 768px) {

    .faq {
        padding: 50px 20px;
    }

    .faq-container {
        flex-direction: column;
        gap: 30px;
    }

    .faq-left h2 {
        font-size: 26px;
    }
}

/* ✅ CTA Section */
.cta {
    padding: 80px 60px;
}

.cta-container {
    background: linear-gradient(135deg, #022c22, #065f46, #16a34a);
    padding: 50px;
    border-radius: 20px;
    color: white;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* LEFT */
.cta-left {
    max-width: 550px;
}

.cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.cta-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-left p {
    color: #e5e7eb;
    font-size: 14px;
}

/* RIGHT */
.cta-right {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
@media(max-width: 768px) {

    .cta {
        padding: 50px 20px;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .cta-left h2 {
        font-size: 24px;
    }

    .cta-right {
        flex-direction: column;
        width: 100%;
    }

    .cta-right button {
        width: 100%;
    }
}
.btn-primary {
    background: #22c55e;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}
/* ✅ Footer */
.footer {
    background: linear-gradient(135deg, #022c22, #021f28, #020617);
    color: white;
    padding-top: 60px;
}

/* Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 10 60px 40px;
}

/* Left */
.footer-about {
    max-width: 350px;
}

.footer-about h3 {
    margin-bottom: 15px;
}

.footer-about p {
    color: #cbd5f5;
    font-size: 14px;
}

/* Social */
.social-icons {
    margin-top: 20px;
}

.social-icons span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    border: 1px solid #334155;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons span:hover {
    background: #22c55e;
    border-color: #22c55e;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    margin-bottom: 15px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #22c55e;
}

/* Contact */
.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    font-size: 13px;
    color: #94a3b8;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #22c55e;
}
@media(max-width: 768px) {

    .footer-container {
        flex-direction: column;
        padding: 0 20px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }
}
/* ✅ About Section */
.about {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.about-left {
    max-width: 550px;
}

.about-badge {
    display: inline-block;
    background: #dcfce7;
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.about-left h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.about-left p {
    font-size: 16px;
    color: #555;
}

/* RIGHT */
.about-right img {
    width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* Optional subtle dotted background like screenshot */
.about {
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}
@media(max-width: 768px) {

    .about {
        padding: 50px 20px;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-left h2 {
        font-size: 28px;
    }

    .about-right img {
        width: 100%;
    }
}
/* ✅ About Details Section */
.about-details {
    padding: 80px 60px;
    background: #f5f6f8;
}

.about-details-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT TEXT */
.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 20px;
    color: #334155;
    line-height: 1.7;
}

/* RIGHT CARD */
.about-card {
    flex: 1;
    background: #f9fafb;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

/* TITLE */
.card-title {
    font-size: 12px;
    color: #22c55e;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* STATS */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;
}

.stats-grid h3 {
    font-size: 26px;
    margin-bottom: 5px;
}

.stats-grid p {
    font-size: 13px;
    color: #64748b;
}

/* DIVIDER */
.about-card hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

/* VALUES */
.core-values {
    padding-left: 15px;
}

.core-values li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #334155;
}
@media(max-width: 768px) {

    .about-details {
        padding: 50px 20px;
    }

    .about-details-container {
        flex-direction: column;
    }

    .about-card {
        margin-top: 20px;
    }
}
/* ✅ Pricing Section */
.pricing-intro {
    padding: 80px 60px;
    background: #f5f6f8;

    /* subtle dotted background like screenshot */
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Container */
.pricing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.pricing-left {
    max-width: 550px;
}

.pricing-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.pricing-left h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.pricing-left p {
    font-size: 16px;
    color: #555;
}

/* RIGHT */
.pricing-right img {
    width: 500px;
    border-radius: 20px;
    object-fit: cover;
}
@media(max-width: 768px) {

    .pricing-intro {
        padding: 50px 20px;
    }

    .pricing-container {
        flex-direction: column;
        text-align: center;
    }

    .pricing-left h2 {
        font-size: 28px;
    }

    .pricing-right img {
        width: 100%;
    }
}
/* ✅ Pricing Cards */
.pricing-plans {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* Container */
.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Card */
.plan-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Featured Card */
.plan-card.featured {
    border: 2px solid #22c55e;
    transform: scale(1.05);
}

/* Badge */
.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
}

/* Headings */
.plan-card h3 {
    margin-bottom: 5px;
}

.plan-sub {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 15px;
}

.plan-card h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.plan-card h2 span {
    font-size: 14px;
    color: #64748b;
}

/* List */
.plan-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.plan-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #334155;
}

/* Buttons */
.plan-card button {
    margin-top: auto;
    padding: 12px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.btn-light {
    background: #f1f5f9;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

/* Hover */
.plan-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
@media(max-width: 992px) {
    .plans-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .pricing-plans {
        padding: 50px 20px;
    }

    .plans-container {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }
}
/* ✅ Project Pricing */
.project-pricing {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* Header */
.project-header h2 {
    font-size: 32px;
    margin: 10px 0;
}

.project-header p {
    color: #64748b;
    max-width: 500px;
}

/* Grid */
.project-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Item */
.project-item {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    transition: 0.3s;
}

.project-item strong {
    color: #22c55e;
    font-weight: 500;
}

/* Hover */
.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
@media(max-width: 768px) {

    .project-pricing {
        padding: 50px 20px;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
/* ✅ Quote CTA Section */
.quote-cta {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* Box */
.quote-box {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    max-width:1200px;
}

/* Heading */
.quote-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* Text */
.quote-box p {
    color: #64748b;
    margin-bottom: 20px;
    max-width: 600px;
}

/* Button */
.btn-dark {
    background: #0f172a;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #020617;
}
@media(max-width: 768px) {

    .quote-cta {
        padding: 50px 20px;
    }

    .quote-box {
        padding: 25px;
    }

    .quote-box h2 {
        font-size: 22px;
    }
}
/* ✅ Contact Section */
.contact {
    padding: 80px 60px;
    background: #f5f6f8;
}

.contact-container {
    display: flex;
    gap: 40px;
}

/* LEFT */
.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    background: #f9fafb;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

.contact-box h5 {
    color: #16a34a;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Contact Item */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item .icon {
    background: #dcfce7;
    color: #16a34a;
    padding: 10px;
    border-radius: 8px;
}

.contact-item small {
    color: #64748b;
}

/* Social */
.social-buttons span {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 20px;
    background: #e2e8f0;
    font-size: 13px;
    cursor: pointer;
}

/* RIGHT FORM */
.contact-form-box {
    flex: 2;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

/* Form */
.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

/* Button */
.btn-dark {
    background: #0f172a;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-dark:hover {
    background: #020617;
}

/* Note */
.form-note {
    margin-top: 15px;
    font-size: 12px;
    color: #94a3b8;
}
@media(max-width: 768px) {

    .contact {
        padding: 50px 20px;
    }

    .contact-container {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }
}
/* ✅ Section */
.bd-hero {
    padding: 100px 60px;
    position: relative;
    overflow: hidden;

    /* dotted background */
    background: #f5f6f8;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ✅ Right Gradient Glow */
.bd-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent);
}

/* ✅ Container */
.bd-container {
    max-width: 900px;
}

/* Badge */
.bd-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Heading */
.bd-hero h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

/* Gradient words */
.gradient-green {
    color: #16a34a;
}

.gradient-blue {
    background: linear-gradient(to right, #16a34a, #2563eb);
    -webkit-background-clip: text;
    color: transparent;
}

/* Paragraph */
.bd-hero p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
}
@media(max-width: 768px) 
{
    @media(max-width: 768px) {
    .bd-hero {
        padding: 60px 20px;
    }

    .bd-hero h1 {
        font-size: 32px;
    }

    .bd-hero::after {
        display: none; /* remove glow for mobile */
    }
}
}
/* SECTION */
.bd-services {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* GRID */
.bd-services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.07);
}

/* TOP */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* ICON */
.icon-box {
    width: 46px;
    height: 46px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

/* NUMBER */
.card-number {
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 1px;
}

/* TEXT */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

/* ✅ CUSTOM BULLETS (IMPORTANT FIX) */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #334155;
}

.custom-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a34a;
    font-size: 18px;
}
@media (max-width: 992px) {
    .bd-services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .bd-services {
        padding: 50px 20px;
    }

    .bd-services-container {
        grid-template-columns: 1fr;
    }
}

/* ✅ USA HERO */
.usa-hero {
    padding: 100px 60px;
    position: relative;
    background: #f5f6f8;

    /* dotted background */
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: hidden;
}

/* ✅ LEFT GREEN GLOW (MATCH IMAGE) */
.usa-hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent);
}

/* Container */
.hero-container {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Heading */
.usa-hero h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
}

/* Gradient text */
.gradient-green {
    color: #16a34a;
}

.gradient-blue {
    background: linear-gradient(to right, #16a34a, #2563eb);
    -webkit-background-clip: text;
    color: transparent;
}

/* Paragraph */
.usa-hero p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
}
@media (max-width: 768px) {

    .usa-hero {
        padding: 60px 20px;
    }

    .usa-hero h1 {
        font-size: 32px;
    }

    .usa-hero::before {
        display: none; /* remove glow on mobile */
    }
}

/* SECTION */
.usa-services {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* GRID */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

/* TOP AREA */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* ICON */
.icon-box {
    width: 46px;
    height: 46px;
    background: #dcfce7;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

/* NUMBER */
.card-top span {
    font-size: 12px;
    color: #94a3b8;
}

/* TITLE */
.service-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.service-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

/* LIST */
.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #334155;
}

/* GREEN BULLET */
.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-size: 18px;
}
@media(max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .usa-services {
        padding: 50px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }
}
/* ✅ Section */
.insights {
    padding: 100px 60px;
    background: #f5f6f8;
    position: relative;

    /* dotted background */
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Container */
.insights-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.insights-left {
    max-width: 550px;
}

/* Badge */
.insights-badge {
    display: inline-block;
    background: #dcfce7;
    color: #16a34a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Heading */
.insights-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #0f172a;
}

/* Text */
.insights-left p {
    font-size: 16px;
    color: #64748b;
}

/* RIGHT IMAGE */
.insights-right img {
    width: 480px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}
@media(max-width: 768px) {

    .insights {
        padding: 60px 20px;
    }

    .insights-container {
        flex-direction: column;
        text-align: center;
    }

    .insights-left h2 {
        font-size: 30px;
    }

    .insights-right img {
        width: 100%;
    }
}
/* SECTION */
.blog-section {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* CONTAINER */
.blog-container {
    max-width: 1200px;
    margin: auto;
}

/* ✅ FEATURED CARD */
.featured-blog {
    display: flex;
    gap: 30px;
    padding: 25px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #07bd5c;
    margin-bottom: 40px;
}

/* Image */
.featured-img img {
    width: 450px;
    border-radius: 15px;
    object-fit: cover;
}

/* Content */
.featured-content {
    flex: 1;
}

/* Badge */
.badge {
    background: #dcfce7;
    color: #16a34a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Title */
.featured-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

/* Text */
.featured-content p {
    color: #64748b;
    margin-bottom: 15px;
}

/* Meta */
.meta {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.meta span {
    margin-right: 10px;
}

/* Link */
.read-more {
    color: #16a34a;
    text-decoration: none;
}

/* ✅ GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

/* Image */
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Content */
.blog-content {
    padding: 15px;
}

.category {
    font-size: 11px;
    color: #16a34a;
    margin-bottom: 5px;
    display: block;
}

.blog-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 13px;
    color: #64748b;
}
@media(max-width: 768px) {

    .blog-section {
        padding: 50px 20px;
    }

    .featured-blog {
        flex-direction: column;
    }

    .featured-img img {
        width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.team {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* HEADER */
.team-header {
    text-align: center;
    margin-bottom: 50px;
}

.team-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #16a34a;
    display: block;
    margin-bottom: 10px;
}

.team-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #0f172a;
}

.team-header p {
    color: #64748b;
    font-size: 15px;
}

/* GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* HOVER */
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE */
.team-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* INFO */
.team-info {
    padding: 15px;
}

/* NAME */
.team-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

/* ROLE */
.team-info span {
    color: #16a34a;
    font-size: 13px;
}
@media(max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .team {
        padding: 50px 20px;
    }

    .team-header h2 {
        font-size: 28px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card img {
        height: auto;
    }
}
/* ✅ SECTION */
.testimonials {
    padding: 80px 60px;
    background: #f5f6f8;
}

/* HEADER */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    color: #16a34a;
    display: block;
    margin-bottom: 10px;
}

.testimonials-header h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #0f172a;
}

.testimonials-header p {
    font-size: 15px;
    color: #64748b;
}

/* ✅ GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ✅ CARD */
.testimonial-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.07);
}

/* QUOTE ICON */
.quote-icon {
    font-size: 30px;
    color: #94a3b8;
    margin-bottom: 10px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* STARS */
.stars {
    color: #16a34a;
    margin-bottom: 15px;
}

/* DIVIDER */
.testimonial-card hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 15px 0;
}

/* NAME */
.testimonial-card h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

/* ROLE */
.testimonial-card span {
    font-size: 13px;
    color: #64748b;
}
@media(max-width: 992px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {

    .testimonials {
        padding: 50px 20px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
