html, body {
    margin: 0;
    font-family: Poppins;
}
/* Navbar general */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  font-family: Poppins;
  width: 100%;
}

.navbar-left1 .logo {
  width: 110px; /* sau ce dimensiune vrei */
  height: auto;
  display: block;
  z-index: 11;
  margin-left: 65px;
}
/* Mijloc: Meniu centrat */
.navbar-center {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.navbar-center a {
  text-decoration: none;
  color: #7d0000;
  font-weight: 600;
  font-size: 20px;
  margin-right: 70px;
}

.sidebar {
    position: fixed;
    top: -200%; /* Inițial, meniul este complet ascuns deasupra ecranului */
    left: 0;
    width: 200px; /* Lățimea meniului */
    height: 200vh; /* Înălțimea meniului va fi egală cu înălțimea întregului ecran */
    background-color: #333; /* Culoare de fundal pentru sidebar */
    transition: transform 0.1s ease; /* Tranziția pentru a-l mișca sus/jos */
    z-index: 900; /* Asigură-te că meniul este deasupra altor elemente */
    cursor: pointer;
  margin-left: 20px;
}

.sidebar.active {
    top: 0; /* Când este activ, meniul va veni în jos pe întregul ecran */
    transform: translateY(170px); /* Asigură că nu mai există un offset */
}



.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px;
    text-align: left;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}
.navbar-center .dropdown {
    position: relative; /* Ne ajută să poziționăm meniul dropdown relativ la link-ul Servicii */
}

.navbar-center .dropdown-content {
    display: none; /* Ascunde dropdown-ul inițial */
    position: absolute;
    background-color: #f9f9f9;
    min-width: 150px; /* Lățimea meniului dropdown */
    z-index: 1;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-left: -50px;
    margin-top: 0;
}

.navbar-center .dropdown-content a {
    color: rgb(179, 62, 62);
    padding: 5px 5px;
    text-decoration: none;
    display: block;
}


.navbar-center .dropdown:hover .dropdown-content {
    display: block; /* Afișează dropdown-ul când treci cu mouse-ul peste elementul dropdown */
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 25px;
    cursor: pointer;
    z-index: 1001;
    color: white;
}

.partners-section {
    padding: 50px 20px;
}

.partners-section h2 {
    color: rgb(161, 0, 0);
    font-size: 24px;
}

.partners-section h1 {
    font-size: 32px;
    font-weight: bold;
    color: rgb(83, 0, 0);
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background-color: #cd6e6e;
    padding: 20px 20px;
}

.mainHeadingText3,
.mainHeadingText4 {
    font-size: var(--small-heading-size);
    font-weight: 800;
    background-color: #cd6e6e;
    color: white;
    z-index: 30;
    padding: 20px 50px;
    max-width: 2000px;
    margin: 0 auto;
    text-transform: uppercase;
}

.partners-logos img {
    height: 150px;
    max-width: 150px;
    object-fit: contain;
}
.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.social-media a {
    font-size: 40px;
    color: lightgray;
    text-decoration: none;
}

.social-media a:hover {
    color: rgb(83, 0, 0);
}

.container {
    width: 80%;
    margin: auto;
    height: 81vh;
    z-index: 4;
}

.row {
    margin-top: 50px;
    display: flex;
    margin-bottom: 60px;
}

.active {
    color: rgb(255, 255, 255) !important;
}

.footer {
    width: 100%;
    height: 50px;
    background-color: black;
    padding-top: 2px;
    text-align: center;
}

.ccPara {
    color: white;
}

/* Stiluri pentru butonul Contact Us */
.contactUsBtn {
    width: 12vw;
    height: 50px;
    border-radius: 10px;
    border: unset;
    font-size: larger;
    transition-duration: 0.3s;
    font-weight: bold;
    background-color: rgb(207, 1, 1);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contactUsBtn:hover {
    background-color: rgb(255, 0, 0);
    cursor: pointer;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.seeMoreBtn {
    color: white;
    font-weight: 600;
    height: 25px;
    border-radius: 5px;
    border: unset;
    transition-duration: 0.3s;
    background-color: rgb(255, 145, 0);
}

.seeMoreBtn:hover {
    cursor: pointer;
    color: bisque;
    background-color: rgb(205, 118, 4);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.menu-icon {
    font-size: 30px;
    cursor: pointer;
    margin-left: 20px;
    margin-top: -15px;
}

.scroll-text {
    position: absolute;
    bottom: 30px;
    font-size: 1rem;
}


/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    object-fit: cover;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: left;
    color: rgb(255, 255, 255);
}

.hero::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.hero * {
    z-index: 2;
}

.cta-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Distanța între coloane */
    padding: 50px;
    background-color: #8a0000dd; /* Roșu închis */
    color: rgb(255, 255, 255);
    max-width: 2000px;
    margin: 0 auto;
}

.cta-box {
    flex: 1;
    padding: 60px;
    text-align: center;
    background-color: rgba(255, 58, 58, 0.589); /* Fundal ușor transparent */
    border-radius: 10px;
    max-height: 300px;
    max-width: 2000px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-box h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 50px;
    margin-bottom: 20px;
}

.cta-arrow {
    font-size: 80px;
    text-decoration: none;
    color: rgb(58, 1, 1);
    transition: transform 0.3s;
}

.cta-arrow:hover {
    transform: translateX(5px);
}

/* Stil pentru separator */
.cta-separator {
    width: 2px;
    height: 80%;
    background-color: white;
}
.certificare-section {
  background-color: white;
  padding: 40px 0;
  text-align: center;
}

.certificare-container {
  max-width: 800px;
  margin: 0 auto;
}

.certificare-icon {
  width: 70px;
  height: auto;
  margin-bottom: 15px;
}

.certificare-titlu {
  color: rgb(125, 0, 0);
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
}

.certificare-subtext {
  font-size: 12px;
  color: #333;
  margin-top: 5px;
}

@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        
    }

    .cta-box {
        padding: 10px;
        width: 700px;
    }
    .cta-box p{
        font-size: 10px;
    }

    .cta-arrow {
        font-size: 60px;
    }

    .sidebar {
        width: 200px;
        left: -200px;
    }

    .dropdown-btn {
        padding: 10px;
    }

    .dropdown-content {
        padding: 5px 0;
    }

    .partners-logos img {
        height: 120px;
        max-width: 120px;
    }

    .social-media a {
        font-size: 30px;
    }
    .container {
        margin-top: 250px;
    }
}


@media (max-width: 600px) {
    #heroVideo {
        width: 100vw;
        height: 100vh; 
    }
    .container {
        width: 95%;
        margin: auto;
        height: auto;
        z-index: 4;
    }
    .navbar {
        flex-direction: column;
        align-items: flex-end;
    }

    .menu-icon {
        margin-left: 0;
    }

    .sidebar {
        width: 100%;
        left: -100%;
    }

    .sidebar.active {
        left: 0;
    }

    .dropdown-btn {
        padding: 10px;
    }

    .partners-logos img {
        height: 100px;
        max-width: 100px;
    }

    .social-media a {
        font-size: 30px;
    }

    .container {
        width: 95%;
    }

    .contactUsBtn {
        width: 90%;
    }

    .cta-container {
        padding: 20px 10px; /* Adjust padding for smaller screens */
        gap: 10px;
        height: 700px;
        width: 500px;
    }

    .cta-box {
        padding: 20px 20px;
        width: 400px;
    }

    .cta-box h1 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 12px;
    }

    .cta-arrow {
        font-size: 50px;
    }
}
@media (max-width: 480px) {
    #heroVideo {
        width: 100vw;
        height: 100vh; 
    }
    .container {
        width: 95%;
        margin: auto;
        height: auto;
        z-index: 4;
    }
    .navbar {
        flex-direction: column;
        align-items: flex-end;
    }

    .menu-icon {
        margin-left: 0;
    }

    .sidebar {
        width: 100%;
        left: -100%;
    }

    .sidebar.active {
        left: 0;
    }

    .dropdown-btn {
        padding: 10px;
    }

    .partners-logos img {
        height: 100px;
        max-width: 100px;
    }

    .social-media a {
        font-size: 30px;
    }

    .container {
        width: 95%;
    }

    .contactUsBtn {
        width: 90%;
    }

    .cta-container {
        padding: 20px 10px; /* Adjust padding for smaller screens */
        gap: 10px;
        height: 700px;
        width: 400px;
    }

    .cta-box {
        padding: 20px 20px;
        width: 350px;
    }

    .cta-box h1 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 12px;
    }

    .cta-arrow {
        font-size: 50px;
    }
}
@media (min-width: 1200px){
    .cta-box {
        padding: 20px;
        height: 55vh;
    }

    .cta-box h1 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 15px;
    }
.container {
    margin-top: 400px;
}
}
@media (min-width: 2000px){
    .cta-box {
        padding: 20px;
        max-width: 2000px;
        margin: 0 auto;
    }

    .cta-box h1 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 15px;
    }
    .container {
        margin-top: 300px;
    }
}
@media (min-width: 1920px){
    .cta-box {
        padding: 20px;
        max-width: 2000px;
        margin: 0 auto;
    }

    .cta-box h1 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 15px;
    }
    .container {
        margin-top: 300px;
    }
}
@media (min-width: 992px){
    .cta-box {
        padding: 20px;
        max-width: 2000px;
        margin: 0 auto;
    }

    .cta-box h1 {
        font-size: 20px;
    }

    .cta-box p {
        font-size: 10px;
    }
    .logo img {
        margin-right: 40px;
    }
    .container {
        margin-top: 150px;
    }
}
