body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
}

.background-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.dot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.4) 20%, transparent 20%);
    background-size: 10px 10px;
    pointer-events: none; 
    z-index: 0;
}

.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.logo {
    width: 20rem; 
    margin-top: 400px;
}

.subtitle {
    font-family:sans-serif;
    width: 100%;
    font-size: 2vw;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.services {
    background-color: #fff;
    padding: 0px 0px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    text-align: center;
    font-size: 2vw;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.intro-text {
    font-size: 1.2vw;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-description {
    font-size: 1.2vw;
    line-height: 1.6;
    margin-bottom: 20px;
    color: black;
}

strong {
    color: #27ae60; 
}

.accordion {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 50px auto;
}

.accordion-item {
    border-bottom: 0px solid #e0e0e0;
}

.accordion-header {
    background-color: #3366A0;
    color: white;
    padding: 20px;
    font-size: 1.2em;
    text-align: left;
    width: 60%;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header h3 {
    font-size: 1.6vw;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 20px;
    background-color: #fff;
    display: none;
    font-size: 1em;
    width: 50%;
    color: black;
    margin: 0 auto;
}

.accordion-content p {
    list-style: none;
    font-size: 1.4vw;
    padding-left: 20px;
}

.accordion-content ul {
    list-style: none;
    font-size: 1.2vw;
    padding-left: 20px;
}

.accordion-content ul li {
    margin-bottom: 10px;
}

.accordion-content ul li i {
    color: #4caf50;
    margin-right: 10px;
}

.accordion-item .icon img {
    width: 15%; 
    height: auto; 
    color:white;
}

.accordion-header .arrow {
    font-size: 2.5vw; 
    transition: transform 0.3s ease;
    color: white; 
    font-weight: bold;
}

.accordion-header.active .arrow {
    transform: rotate(90deg); 
}

@media (max-width: 786px) {

    .background-video-container {
        height: 50vh;
    }

    .background-video {
        object-fit: cover;
        transform: translate(-50%, -30%);
    }
    .background-video {
        position: absolute;
        top: 0;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translateX(-50%); 
        z-index: -1;
    }

    .dot-overlay {
        height: 60vh;
    }

    .dot-overlay {
        background-size: 5px 5px;
    }

    .overlay-content p {
        font-size: 1rem;
        margin-top: 20px;
        width: 100%;
        font-weight: bolder;
      }

    .logo {
        width: 10rem;
        margin-top: 200px;
    }

    .subtitle {
        font-family:sans-serif;
        width: 100%;
        font-size: 2vw;
        font-weight: 300;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .services {
        background-color: #fff;
        padding: 0px 0px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .section-title {
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c3e50;
        margin-bottom: 10px;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: black;
    }
    
    strong {
        color: #27ae60; 
    }

    .accordion {
        background-color: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin: 50px auto;
    }
    
    .accordion-item {
        border-bottom: 0px solid #e0e0e0;
    }
    
    .accordion-header {
        background-color: #3366A0;
        color: white;
        padding: 20px;
        font-size: 1.2rem;
        text-align: left;
        width: 90%;
        border: none;
        outline: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
    }
    
    .accordion-header i {
        transition: transform 0.3s ease;
    }
    
    .accordion-header h3 {
        font-size: 1.25rem;
    }
    
    .accordion-header.active i {
        transform: rotate(180deg);
    }
    
    .accordion-content {
        padding: 20px;
        background-color: #fff;
        display: none;
        font-size: 1rem;
        width: 50%;
        color: black;
        margin: 0 auto;
    }
    
    .accordion-content p {
        list-style: none;
        font-size: 1rem;
        padding-left: 20px;
        width: 100%;
        text-align: left;
    }
    
    .accordion-content ul {
        list-style: none;
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .accordion-content ul li {
        margin-bottom: 10px;
    }
    
    .accordion-content ul li i {
        color: #4caf50;
        margin-right: 10px;
        font-size: 1rem;
    }

    .accordion-item .icon { 
        height: auto; 

        color:white;
        align-self: left;
        align-items: center;
    }
    
    .accordion-item .icon img {
        width: 30%; 
        height: auto; 
        margin-left: 50px;
        color:white;
        align-self: center;
    }
    
    .accordion-header .arrow {
        font-size: 1.5rem; 
        transition: transform 0.3s ease;
        color: white; 
        font-weight: bold;
    }
    
    .accordion-header.active .arrow {
        transform: rotate(90deg); 
    }
}
