body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    padding: 20px 0;
    border-bottom: 1px solid rgb(164, 164, 164)
}

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

.menu-toggle {
    display: none;
}

.logo img {
    max-width: 20%;
    height: auto;
    display: block;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    margin-left: 200px;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 550;
    transition: color 0.3s ease;
    padding: 5px;

}

nav ul li a:hover {
    color: #90cfff;

}

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

.hero-section {
    padding: 30px 0;
    position: relative;
    background: url("images/background1.jpg") no-repeat center;
    background-size: cover;
}

/* .project-logo {
    width: 100px;
    margin-bottom: 20px;
} */

.welcome-text {
    font-size: 14px;
    color: #2f2f2f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

h1 {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #444444;
    line-height: 1.6;
    font-size: 20px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item img {
    height: 50px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.stat-label {
    font-size: 17px;
    color: #383838;
    text-transform: uppercase;

}

.stats-grid .stat-item:first-child img {
    margin-right: 7px;
}

.stats-grid .stat-item:nth-child(2) img {
    margin-right: 7px;
}

.stats-grid .stat-item:nth-child(3) img {
    margin-right: 7px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {

    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #000;
    padding: 30px 120px;
    color: #fff;
    border: 2px solid #000;

}

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

.btn-secondary {
    padding: 30px 100px;
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
}

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

.scroll-indicator img {
    height: 50px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

h2 {
    color: #000;

}

.services-section {
    padding: 10px 0;
    background-color: #fff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-header p {
    font-size: 18px;
    color: #363636;
    line-height: 1.6;
}

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

.service-card {

    /* background-color: #00ff2f17; */
    /* background-color: #00ff2f17; */
    background-image: url('images/background5.jpg');
    background-repeat: no-repeat;
    background-size: 500px 400px;
    background-position: center;

    /* border: 5px solid #dadada; */
    border: 5px solid #01326746;
    padding: 30px;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.icon-container {
    background-color: #e8e8e8;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.icon-container svg {
    color: #333;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.service-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    font-size: 15px;
    color: #3c5431;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    font-weight: 600;
}

.service-card ul li::before {
    content: '•';
    color: #000;
    font-size: 18px;
    position: absolute;
    left: 0;
    line-height: 1;
}

/* Responsiveness for tablets and smaller screens */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsiveness for mobile phones */
@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.call-to-action {
    padding: 30px 0 20px;
}

.call-to-action h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.call-to-action p {
    font-size: 17px;
    color: #dbdbdb;
    max-width: 600px;
    margin: 0 auto;

}

.results-section {
    padding: 60px 0;
    background-color: #fff;
}

.results-section h3 {
    color: black;

}

.results-section p {
    color: #000;
    font-weight: 700;

}

.results-section {
    padding-top: 20px;
    padding-bottom: 80px;
}


.results-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.results-header h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.results-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.case-study-card {
    display: flex;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
    box-shadow: 0 5px 50px #07300fa2;

}

.case-study-image {
    flex: 1;
    height: 350px;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tags {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    background-color: #e8e8e8;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
    flex-shrink: 0;
}

.case-study-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.case-study-content .description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
}

.growth-results {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.growth-circle {
    width: 80px;
    height: 80px;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
}

.growth-text .growth-label {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.growth-text .growth-sublabel {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.timeframe {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

/* Responsiveness for smaller screens */
@media (max-width: 768px) {
    .case-study-card {
        flex-direction: column;
    }

    .case-study-content {
        padding: 20px;
    }
}


.case-study-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: -50px;
}





.case-study-content {
    padding: 30px;
}



.case-study-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-study-content .description {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    min-height: 10px;
    /* Asigură înălțime consistentă */
    margin-bottom: 20px;
}

.growth-results {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.growth-circle {
    width: 60px;
    height: 60px;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.growth-text .growth-label {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.timeframe {
    font-size: 12px;
    color: #aaa;
    margin: 0;
}

.pricing-section {
    padding: 60px 0;
    background-color: #efefef;

    border-top: 4px solid #0000002c;
}

.pricing-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: -2px;
}

.pricing-section p {

    font-size: 16px;
    color: #666;
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 992px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-details {
    padding: 20px 0 60px;
}

.pricing-details h4 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-details p {
    font-size: 16px;
    color: #fbfbfbc0;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 100px;

}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-value {
    font-size: 30px;
    font-weight: 700;
    margin: 0;

}

.feature-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
}

.reviews-section {
    padding: 60px 0;
    /* background-color: #f7f7f7; */
    background-image: url(images/background6.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-top: 1px solid #eee;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.reviews-header p {
    font-size: 18px;
    color: #000000;
    font-weight: 520;

}

.stars span {
    color: gold;
    font-size: 24px;
    line-height: 1;
}

.rating-text {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

}

.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-card .star-rating {
    font-size: 18px;
    color: gold;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    min-height: 120px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
}

.reviewer-company,
.reviewer-location {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 992px) {
    .pricing-features {
        flex-direction: column;
        gap: 50px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-section {
    padding-bottom: 60px;
}

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

.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-card .star-rating {
    font-size: 18px;
    color: gold;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    min-height: 120px;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
}

.reviewer-company,
.reviewer-location {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.cta-bottom {
    padding: 60px 0;
    background-color: #000000;
    border-top: 1px solid #03fff2;
}

.cta-bottom h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-bottom p {
    font-size: 16px;
    color: #cfcfcf;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.cta-form-section {
    padding: 60px 0;
    background-color: #fff;
}

.cta-form-section h4 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.cta-form-section p {
    font-size: 16px;
    color: #313131;
    max-width: 600px;
    margin: 0 auto 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    background-color: #f7f7f7;
    padding: 40px;
    border-radius: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #4a4949;
}

.color-green {
    color: rgb(2, 159, 2)
}

.contact-info p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

ion-icon {
    color: #000;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.info-icon-circle {
    width: 50px;
    /* Lățimea cercului */
    height: 50px;
    /* Înălțimea cercului */
    border-radius: 50%;
    /* Face elementul un cerc */
    background-color: #f0f0f0;
    /* Culoarea de fundal a cercului */
    display: flex;
    /* Aliniază iconul în centrul cercului */
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    /* Asigură că cercul nu se micșorează */
}

.info-icon-circle i,
.info-icon-circle ion-icon {
    font-size: 22px;
    /* Mărimea iconului */
    color: #333;
    /* Culoarea iconului */
}

/* Stil pentru grupul de text (etichetă și detaliu) */
.info-text-group {
    display: flex;
    flex-direction: column;
    /* Asigură că eticheta și detaliul sunt una sub alta */
    gap: 7px;
}

/* Stil pentru etichetă (Email, Phone, Service Area) */
.info-text-group .info-label {
    font-size: 14px;
    font-weight: 500;
    /* Mai bold decât detaliul */
    color: #333;
    /* Culoarea textului etichetei */
    margin: 0;
    /* Elimină marginile implicite */
    line-height: 1.2;
}

/* Stil pentru detaliu (adresa, numărul, zona) */
.info-text-group .info-detail {
    font-size: 14px;
    color: #666;
    /* Culoarea textului de detaliu */
    margin: 0;
    /* Elimină marginile implicite */
    line-height: 1.2;
}

.info-text-group a.info-detail {
    color: blue;
    text-decoration: none;
}

.info-item i {
    font-size: 20px;
    color: #000;
}

.info-label {
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.info-detail {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.email-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-inline {
    display: flex;
    gap: 20px;

}

.contact-form {
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    width: 100%;

}

.form-group label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
}

.btn-send {
    background-color: #000000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-send:hover {
    background-color: #333;
}

footer {
    background-color: #101010;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #6b6b6b;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    color: #fdfdfd;
    line-height: 1.6;
    max-width: 500px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact a.info-detail {
    color: rgb(165, 165, 255);
    text-decoration: none;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-contact i {
    font-size: 14px;
    color: #fff;
}

.footer-contact p {
    font-size: 14px;
    color: #bbb;
    margin: 0;
}

.footer-links h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    line-height: 2.2;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-bottom p {
    font-size: 12px;
    color: #bbb;
    margin: 0;
}

.social-icons a {
    color: #bbb;
    font-size: 18px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

/* Responsive design for tablets and smaller screens */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 15px;
    }

    .reviews-section {
        background-size: auto;
    }
}

/* ====== Mobile Responsive Enhancements ====== */

/* Navbar responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo img {
        max-width: 80px;
    }

    nav ul {
        /* ascundem meniul clasic */
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        position: absolute;
        top: 70px;
        /* right: 50px; */

        left:-205px;
        
        text-align: center;

        background: rgba(0, 0, 0, 0.905);
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 30px;
        color: red;
        gap: 0;
        z-index:9999;
        max-height: 0;
        width: 50vh;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
    }
    
    nav ul li a {
        color: #f7f7f7;
    }

    nav ul li{
        padding:7px;
    }

    nav{
        position: relative;
        z-index: 1001;
    }
    nav ul li a:hover {
        color: #90cfff;
    }

    nav ul.active {
        /* display: flex; */
        max-height:100vh;
        opacity: 1;
        visibility: visible;
         
    }

    /* nav ul{
        position: absolute;
        top: 70px;
        left:0;
        right:0;
        flex-direction: column;
        text-align:center;
        background: red;
        gap:0;
    }
    nav ul li{
        padding : 20px;
    } */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 40px;
        z-index: 10;
    }

    .contact-form {
        margin-top: 0px;
    }

    #menuList{
        transition: all 0.6s;
    }
}


/* Hero section text resize */
@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }

    .description {
        font-size: 15px;
        padding: 0 10px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary {
        padding: 30px 50px;
    }

    .btn-secondary {
        padding: 25px 50px;
    }

    .case-study-image {
        height: 200px;
    }

}

/* Reviews grid fix for mobile */
@media (max-width: 576px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }
}

/* Contact form fix */
@media (max-width: 768px) {
    .form-group-inline {
        flex-direction: column;
        gap: 0;
    }
}

/* Footer fix */
@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}