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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #777;
    background-color: #fff;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1100px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.name {
    color: #555;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1px;
}

.menu__list {
    display: flex;
    list-style: none;
}

.menu__item {
    margin-left: 30px;
}

.menu__link {
    font-weight: bold;
    color: #777;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
}

.menu__link:hover {
    color: #7cc576;
}

/* Hero */
.hero {
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('Background.png');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.under_hero-content {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
}

.btn.primary {
    background-color: #7cc576;
    color: #fff;
}

.btn.primary:hover {
    background-color: #fff;
    color: #222;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #222;
}

/* Sections general */
section {
    padding: 80px 0;
}

h2.section-title {
    font-size: 28px;
    text-align: center;
    color: #222;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: #777;
    margin-bottom: 50px;
}

/* Services, Culture */
.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.service-item {
    text-align: center;
    flex: 1;
}

.icon-box {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    display: block;
}

.service-item h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #222;
}

.service-item p {
    font-size: 13px;
    color: #777;
}

/* Relax */
.relax {
    padding: 0;
    background-color: #f4f4f4;
}

.row-relax {
    display: flex;
}

.relax-left {
    width: 50%;
    background-color: #e6e6e6;
    height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-img {
    width: 300px;
    height: 300px;
    position: absolute;
    right: -150px;
}

.relax-right {
    width: 100%;
    color: #fff;
    padding: 60px;
    display: flex;
    align-items: center;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('Background1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.relax-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.relax-content .green-text {
    color: #7cc576;
}

.relax-content > p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #ccc;
}

.relax-list {
    list-style: none;
    margin: 20px 0 30px;
}

.relax-list li {
    margin-bottom: 10px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.check-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Project Framework */
.project-framework {
    padding-bottom: 50px;
}

.project {
    text-align: center;
    margin-bottom: 40px;
}

.project-name {
    font-weight: bold;
    font-size: 28px;
    color: #222;
    text-transform: uppercase;
}

.under__project-name {
    color: #777;
}

.framework-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.framework {
    width: 50%;
}

.framework-name {
    font-weight: bold;
    font-size: 18px;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.text1-framework {
    font-size: 14px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.feature-title {
    font-weight: bold;
    color: #222;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 13px;
}

.text2-framework {
    margin: 20px 0;
    font-size: 14px;
}

.btn-framework {
    color: #7cc576;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.arrow-icon {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.framework-image {
    width: 50%;
    display: flex;
    justify-content: center;
}
.framework-image img {
    max-width: 100%;
    height: auto;
}

/* Clients */
.clients {
    background-color: #f9f9f9;
}

.client-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: center;
    gap: 30px;
}

.client-item.reverse {
    flex-direction: row-reverse;
}

.client-photo {
    width: 120px;
    height: 120px;
    background-color: #ddd;
    border-radius: 50%;
}

.client-quote {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    font-style: italic;
    position: relative;
}

.client-name {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-style: normal;
    color: #7cc576;
}

.cta {
    background-color: #7cc576;
    text-align: center;
    color: #fff;
}

.cta h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Partners */
.partners {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    height: 50px;
    width: auto;
}

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 40px;
}

.footer-col {
    width: 33%;
}

.footer-col h4 {
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
}

.tweet-content {
    display: flex;
    flex-direction: column;
}

.tweet-meta {
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    margin-top: 5px;
}

.tweet-hashtag {
    color: #7cc576;
    margin-right: 8px;
    font-size: 13px;
}

.tweet-time {
    color: #7cc576;
    font-size: 13px;
    margin-left: 0; 
}
.square{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222222;
}

.footer-bottom {
    background-color: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

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

.footer__text {
    font-size: 13px;
    color: #777;
}

.social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #222;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social a:hover {
    background-color: #7cc576;
}