* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: #0B5546;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-icons a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

/* Header */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #0B5546;
}

.btn-login {
    background-color: #0B5546;
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* background: linear-gradient(135deg, #0B5546 0%, #0d6b57 100%); */
    color: black;
    padding: 30px 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.badge-sub {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Rethink Sans', sans-serif;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: #0B5546;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
}

.hero-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Carousel Navigation */
.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: 0B5546;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Features Banner */
.features-banner {
    background: linear-gradient(90deg, #0B5546 0%, #0F9A7D 100%);
    padding: 10px 0;
}

.banner-content {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.banner-item {
    font-size: 14px;
    color: white;
    font-weight: 400;
}

.banner-item-head {
    font-size: 28px;
    color: white;
    font-weight: 800;
}


/* Unified Platform */
.unified-platform {
    padding: 60px 0;
    background-color: white;
}

.text-center {
    text-align: center;
}

.unified-platform .badge-sub {
    background: #f0fdf4;
    color: #11826C;
    border-radius: 4px;
    font-size: 0.75rem;
    padding: 5px 10px;
}

.unified-platform h2 {
    font-size: 48px;
    margin: 20px 0;
    font-family: 'Rethink Sans', sans-serif;
}

.text-acco {
    color: #1CB592;
    /* Brighter Green */
    font-weight: 700;
}

.text-tick {
    color: #000;
    font-weight: 700;
}

.section-desc {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.toggle-container {
    display: inline-flex;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 10px;
}

.toggle-btn {
    border: none;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.toggle-btn.business {
    background-color: #1CB592;
    color: white;
    border-radius: 30px 0 0 30px;
}

.toggle-btn.consultants {
    background-color: #000;
    color: white;
    border-radius: 0 30px 30px 0;
}

/* Services Grid */
.services-grid-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    /* Subtle shadow */
    transition: transform 0.3s;
    background: #fff;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    /* Fixed height for consistency */
    display: block;
    object-fit: cover;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    font-weight: 600;
    color: white;
    font-size: 1.05rem;
    text-align: left;
    /* Aligned left as per screenshot */
    padding-left: 20px;
}

.card-label.green {
    background-color: #1CB592;
}

.card-label.black {
    background-color: #000;
}

/* Business Needs Section */
.business-needs-section {
    padding: 80px 0;
    background: #0B5546;
    /* Matching reference image */
    color: #fff;
}

.white-text {
    color: #fff !important;
    opacity: 0.9;
}

.needs-header {
    margin-bottom: 40px;
}

.needs-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.needs-toggle {
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    display: inline-flex;
}

.needs-btn {
    background: transparent;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.needs-btn.active {
    background: #0B5546;
    color: #fff;
}

.needs-main-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 600;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.needs-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    display: flex;
    flex-direction: column;
}

.needs-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.needs-card-body {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.needs-card-body h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 700;
}

.needs-card-body ul {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.needs-card-body ul li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
    line-height: 1.5;
}

.needs-card-body ul li i {
    color: #1CB592;
    margin-top: 3px;
    font-weight: 900;
}

.btn-discover {
    display: inline-block;
    background: #11826C;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-discover:hover {
    background: #0B5546;
}

/* Responsive Needs Grid */
@media (max-width: 992px) {
    .needs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .needs-grid {
        grid-template-columns: 1fr;
    }
}

.industry-section {
    padding: 80px 0;
    background-color: #ffff;
}

.section-sub-heading {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industry-heading {
    font-size: 32px;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #333;
    line-height: 1.4;
    font-family: 'Rethink Sans', sans-serif;
    font-weight: 600;
}

.industry-pills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #c2edda;
    /* Light green border */
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #fff;
    cursor: default;
    transition: all 0.3s ease;
}

.industry-pill i {
    color: #1CB592;
    /* Icon color */
    font-size: 1.1em;
}

.industry-pill:hover {
    background-color: #f0fdf4;
    border-color: #1CB592;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 181, 146, 0.15);
}

/* Ecosystem Section */
.ecosystem-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-heading {
    font-size: 30px;
    font-family: 'Rethink Sans', sans-serif;
    color: #333;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
}

.ecosystem-img-wrapper img {
    width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    /* Removed shadow as per screenshot clean look */
}

.section-sub-heading-right {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #1CB592; */
    /* border-radius: 50%; */
    color: #1CB592;
    font-size: 28px;
    /* background: #f0fdf4; */
}

/* Custom icon styling to match the line-art style in screenshot roughly using FA */
.feature-icon i {
    font-weight: 300;
    /* Try to make them look thinner if font supports it, else standard */
    color: #7bceb8;
    /* Lighter green/teal */
    font-size: 36px;
}


.feature-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 15px;
    color: #777;
    line-height: 1.6;
}

/* Responsive Ecosystem */
@media (max-width: 992px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading {
        font-size: 32px;
    }
}

.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-block h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-socials {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    color: white;
    margin-right: 15px;
    font-size: 20px;
    text-decoration: none;
}

.small-label {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

.highlight-number {
    font-size: 24px;
    font-weight: 600;
    color: #0B5546;
}

.email-link {
    color: #0B5546;
    margin-top: 10px;
}

.links-block ul {
    list-style: none;
}

.links-block li {
    margin-bottom: 10px;
}

.links-block a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.links-block a:hover {
    color: white;
}

.copyright-bar {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 10px;
}

.separator {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .hero-content {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}