/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.main-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 1rem 0;
    color: white;
}

.main-header .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 250px;
    width: auto;
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo-overlay-text {
    position: absolute;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    top: 75%;
    pointer-events: none;
}

.highlight {
    color: #007a66;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    color: white;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007a66;
    text-shadow: 0 0 15px #00baff, 0 0 30px #00baff;
}

/* Hero */
.hero {
    background: url('../images/logo.jpg') no-repeat center center/cover;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    padding-top: 150px;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background: #007a66;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    color: #fff;
    margin-top: 1rem;
}

.btn-primary:hover {
    background: #0095d9;
    box-shadow: 0 0 15px #007a66, 0 0 30px #007a66;
}

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    margin: 4rem 0;
    padding: 0 2rem;
}

.feature-box {
    text-align: center;
    width: 30%;
    padding: 1rem;
}

.feature-box img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Services-Solutions Section */
.services-solutions-section {
    background-image: url('../images/services background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5px 20px;
    padding-bottom: 0px;
    position: relative;
    z-index: 0;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 50, 0.9);
    z-index: 1;
}

.services-solutions-section > *:not(.background-overlay) {
    position: relative;
    z-index: 2;
}

.services-solutions-heading {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

.circle-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    font-weight: 1000;
}

.circle-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 1000;
}

.highlight-teal {
    color: #007a66;
}

.circle-subtitle-line {
    width: 150px;
    height: 4px;
    background-color: #007a66;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Circle Layout */
.circle-layout {
    position: relative;
    width: 70vw;
    height: 70vw;
    max-width: 700px;
    max-height: 700px;
    margin: 100px auto 0 auto;
}

.center-image-wrapper {
    width: 50vw;
    height: 50vw;
    max-width: 500px;
    max-height: 500px;
    border-radius: 50%;
    object-fit: contain;
    border: 5px solid #007a66;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.center-image-inner {
    width: 37vw;
    height: 37vw;
    max-width: 262px;
    max-height: 262px;
    object-fit: contain;
}

/* Headings */
.section-heading {
    position: absolute;
    font-size: 38px;
    font-weight: bold;
    color: white;
}

.node-section-headings {
    position: relative;
    margin-top: -100px;
}

.left-heading {
    left: 0;
    top: 20px;
}

.right-heading {
    right: 0;
    top: 20px;
}

/* Node Content */
.circle-wrapper {
    width: 12vw;
    height: 12vw;
    max-width: 120px;
    max-height: 120px;
    border-radius: 50%;
    border: 3px solid #007a66;
    background-color: #007a66;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-wrapper img {
    width: 50%;
    height: 50%;
    object-fit: contain;
    border-radius: 0;
}

.node-content-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    width: 100%;
}

.node-content-inner.left-align {
    flex-direction: row-reverse;
    text-align: right;
}

.node-content-inner.right-align {
    flex-direction: row;
    text-align: left;
    flex-wrap: nowrap;
    width: 100%;
}

.node-content-inner.right-align .text-content {
    text-align: left;
    max-width: 400px;
    padding-left: 20px;
    white-space: normal;
    word-break: break-word;
}

.node-content {
    position: absolute;
    z-index: 1;
    width: fit-content;
    max-width: 400px;
    display: flex;
}

/* Text Content */
.text-content {
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    max-width: 300px;
    padding: 5px 10px;
}

.text-content h3 {
    margin: 0;
    font-size: 1.5rem;
    color: white;
    z-index: 1;
}

.text-content p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: white;
    z-index: 1;
}

/* Values Section */
.values-section {
    padding: 60px 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007a66;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-box {
    flex: 1 1 22%;
    padding: 30px 20px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    transition: transform 0.3s;
}

.value-box:hover {
    transform: translateY(-5px);
}

.value-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.value-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.value-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

/* Counters */
.counters {
    display: flex;
    justify-content: space-evenly;
    background: #007a66;
    color: white;
    padding: 3rem 1rem;
    text-align: center;
}

.counter-box {
    font-size: 2rem;
}

/* Why Choose Us */
.why-choose-us {
    background-color: transparent;
    color: #333;
    padding: 60px 30px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #007a66;
}

.reasons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reason-box {
    flex: 1 1 22%;
    text-align: center;
    color: #333;
}

.reason-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.reason-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #007a66;
}

.reason-box p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* Learn More Button */
.learn-more-btn {
    margin-top: 40px;
}

.learn-more-btn a {
    display: inline-block;
    background-color: #007a66;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.learn-more-btn a:hover {
    background-color: #005f52;
}

/* Footer */
.footer {
    background-color: #007a66;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1 1 220px;
    margin: 10px 20px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #007a66;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-logo {
    width: 200px;
    margin-bottom: 10px;
}

.footer-subtext {
    font-size: 10px;
    color: #ccc;
    margin-left: 65px;
    margin-top: -60px;
}

.footer-bottom {
    background-color: #002620;
    color: #aaa;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    border-top: 1px solid #00453b;
}

.node-content.right-side .text-content {
    max-width: 400px;
    min-width: 300px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    display: block;
}

