* {
    font-family: 'Poppins', sans-serif;
}
.subnav {
    background: #0A0F21; 
    color: white; 
    /* height:50px;  */
    display: flex; 
    align-items: center;
}
.navbar {
    height: 120px;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1044;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.navbar-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-cta-button {
    margin-left: auto;
}
/* Overlay styles */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1045;
}

@media (max-width: 991px) {
    /* Sliding menu styles for mobile */
    #navbarNavAltMarkup {
        position: fixed !important;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh !important;
        max-height: 100vh !important;
        background: white;
        z-index: 9999999999;
        transition: right 0.3s ease-in-out;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        display: block !important;
        overflow-y: auto;
    }
    #navbarNavAltMarkup.show {
        right: 0;
    }
    .navbar-nav {
        flex-direction: column;
    }
    .nav-item {
        margin: 10px 0;
    }
    .close-menu {
        position: absolute;
        top: 10px;
        right: 10px;
        border: none;
        background: none;
        font-size: 24px;
        cursor: pointer;
        display: block;
    }
    .navbar-collapse {
        flex-direction: column;
    }
    .nav-cta-button {
        margin-top: auto;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    #navbarNavAltMarkup {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: flex !important;
    }
    .navbar-nav {
        flex-direction: row;
    }
    .nav-item {
        margin: 0 10px;
    }
    .close-menu {
        display: none;
    }
}

header {
    height: 100% !important;
    background: #0E142E;
    color: white;
    padding: 20px;
}

.yuh43g {
    position: relative;
    top: -75px;
    background: white;
    padding: 55px;
    border-radius: 8px;
    background-image: url(../img/b-1.jpg);
}

input {
    height: 58px;
}

.jh76g img {
    margin-right: 10px;
}

.jh76g {
    height: 550px;
    padding: 115px 10px;
    background: #F3F6FF;
}

.c-btn-primary {
    height: 58px;
    background: #FD5D13;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
}

h3 {
    font-size: 20px;
    color: #FD5D13;
    font-weight: 300;
}
li {
    list-style-type: none;
}

.checked {
    background: #FD5D13;
    border-radius: 50%;
    padding: 6px;
    width: 27px;
    height: 27px;
    color: white;
    font-weight: 900;
    box-shadow: 0 10px 10px rgb(217 0 0 / 19%), 0 6px 6px rgb(255 0 0 / 23%);
    margin-right: 8px;
    margin-bottom: 8px;
}

.c-btn-phone {
    width: 300px;
    height: 50px;
    margin: 0 auto;
    border: none;
    background: red;
    color: white;
    border-radius: 3px;
}

.c-btn-whatsapp {
    width: 300px;
    height: 50px;
    margin: 0 auto;
    border: none;
    background: #61CE70;
    color: white;
    border-radius: 3px;
}

h2 {
    font-weight: 900;
    color: #FD5D13;
}
.fa-facebook-f:not(.subnav .fa-facebook-f) {
    border-radius: 50%;
    background: black;
    width: 40px;
    height: 40px;
    text-align: center;
    padding-top: 8px;
    border: 1px solid white;
    font-size: 20px;
}
.card-services {
    background: white;
    color: black;
    border-radius: 6px;
}
.card-services img {
    margin-bottom: 20px;
}
.card-services p {
    color: rgb(101 105 130);
}

.nav-item {
    font-weight: 700;
}
.nav-item.active {
    color: #FD5D13 !important
}
.experience div img {
    margin-right: 10px;
}
.experience p {
    width: 240px;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
.experience div {
    display: inline-flex;
    align-items: center;
    width: 350px;
    justify-content: center;
    height: 100px;
    background: white;
    border-radius: 8px;
    position: absolute;
    box-shadow: 6px 6px 50px 5px rgba(0, 0, 0, 0.12);
}

.experience i {
    width: 63px;
    height: 63px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fd5d13;
    color: white;
    border-radius: 7px;
}

/* Animații la scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay-uri pentru animații */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: #FD5D13;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e54d0a;
    transform: translateY(-3px);
}

/* Typewriter effect */
.animate-text {
    opacity: 0;
    will-change: opacity;
}

.animate-text.typing::after {
    content: '|';
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.accordion-button:not(.collapsed) {
    color:#FD5D13;
    font-weight: 700;
}

.accordion-item {
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .huhg7jb {
        display: grid;
    }
    .kih8fg {
        padding: 30px !important;
    }
    .display-3 {
        font-size: 2rem !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    p {
        font-size: 0.9rem;
    }

    .c-btn-primary {
        height: 45px;
        padding: 10px 20px;
    }

    .jh76g {
        height: auto;
        padding: 60px 10px;
    }

    .experience div {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        margin: 10px auto !important;
        width: 100% !important;
    }

    .card-services {
        margin: 10px 0 !important;
    }

    .card-services img {
        width: 100% !important;
        height: auto !important;
        max-width: 350px !important;
    }

    .yuh43g {
        padding: 20px;
        margin-top: 30px;
    }

    .yuh43g form {
        padding: 15px;
    }

    .col-6 {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .col-4 {
        width: 100% !important;
        margin-bottom: 15px;
    }

    .col-3 {
        width: 50% !important;
        margin-bottom: 20px;
    }

    /* .d-inline-flex {
        flex-wrap: wrap !important;
    } */

    /* Make all images responsive */
    img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Special handling for specific images */
    img[width="500"], img[width="280"], img[width="620"] {
        width: 50% !important;
        max-width: 280px !important;
        margin: 10px auto !important;
        display: block !important;
    }

    .subnav {
        display: none !important;
    }

    [class*="d-grid"] {
        text-align: center;
    }

    ul.p-0 {
        display: inline-block;
        text-align: left;
    }

    .navbar {
        height: auto !important;
        padding: 10px !important;
    }

    .navbar-brand img {
        width: auto !important;
        height: 80px !important;
    }
}

@media (max-width: 480px) {
    .col-3 {
        width: 100% !important;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .experience div {
        height: 80px !important;
    }

    .experience p {
        font-size: 16px !important;
        width: 200px !important;
    }

    .experience i {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
    }

    /* Additional adjustments for very small screens */
    @media (max-width: 320px) {
        .display-3 {
            font-size: 1.5rem !important;
        }

        h1 {
            font-size: 1.3rem !important;
        }

        .c-btn-primary {
            width: 100% !important;
            margin: 5px 0 !important;
        }

        .experience p {
            width: 160px !important;
            font-size: 14px !important;
        }

        img[width="500"], img[width="280"], img[width="620"] {
            max-width: 100% !important;
        }
    }
}

.contact-button {
    width: 400px;
    height: 100px;
    display: inline-flex;
    align-items: center;
}

.contact-button .icon-container {
    width: 20%;
    margin-right: 20px;
}

.contact-button .text-container {
    width: 80%;
}

@media (max-width: 768px) {
    .contact-button {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 15px !important;
    }

    .contact-button .icon-container {
        width: 60px;
        margin-right: 15px;
    }

    .contact-button .text-container {
        width: calc(100% - 75px);
    }

    .contact-button p {
        margin: 0;
    }

    .contact-footer-row {
        height: auto !important;
        padding: 20px 0;
    }

    .social-container {
        text-align: center !important;
        margin-top: 20px;
    }

    .social-container .h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-button {
        padding: 10px !important;
    }

    .contact-button .icon-container i {
        font-size: 24px !important;
        padding: 10px !important;
    }

    .contact-button .text-container p.h4 {
        font-size: 1.2rem;
    }
}

.orange-text {
    color: #FD5D13;
}

#cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #FD5D13;
    border-radius: 50%;
    pointer-events: none; /* So it doesn't block clicks */
    z-index: 9999;
        
    @media (pointer: coarse) {
        display: none !important;
    }
  }

  h5 {
    font-weight: 700;
    text-align: left;

  }

  @media (max-width: 1200px) {
    .uhgy7 {
        display: grid;
    }
  }


.step-number {
    background: #FD5D13;
    border-radius: 50%;
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    color: white;
    margin: 0;
    font-weight: 900;
    position: absolute;
    border: 5px solid #F3F6FF;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
}

.step-content p {
    max-width: 190px;
    text-align: justify;
}

.contact-icon {
    border-radius: 50%;
    background: #FD5D13;
    min-width: 65px;
    height: 65px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.mr-20 i {
    margin: 0 auto;
    margin-bottom: 10px;
}
.mr-20 {
    margin-right: 20px;
    width: 100%;
    text-align: center;
}