/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.skills-circle {
    position: relative;
    padding: 50px 20px;
    background: url("img/inqury1.png") no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px){
    section.skills-circle {
        position: relative;
        padding: 10px 20px    }
}

section.skills-circle[data-overlay-dark]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

section.skills-circle .con {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
}

section.skills-circle .left-con {
    margin-top: 80px;
    margin-right: 100px;
    flex: 1;
    text-align: center;
}

section.skills-circle .left-con img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

section.skills-circle .left-con h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

section.skills-circle .left-con p {
    font-size: 1rem;
    line-height: 1.5;
}

section.skills-circle .form-con {
    flex: 1;
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
}

section.skills-circle .form-con h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

section.skills-circle .form-group {
    margin-bottom: 20px;
}

section.skills-circle .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

section.skills-circle .form-group input,
section.skills-circle .form-group select,
section.skills-circle .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

section.skills-circle .form-group textarea {
    resize: none;
}

section.skills-circle .submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

section.skills-circle .submit-btn:hover {
    background-color: #b30000;
}

/* Mobile Styles */
@media (max-width: 768px) {
    section.skills-circle .con {
        flex-direction: column;
    }

    section.skills-circle .left-con {
        display: none;
    }

    section.skills-circle .form-con {
        width: 100%;
    }
}







/* General Styles */
section.testimonials {
    position: relative;
    padding: 50px 20px;
    background: url("img/001.jpg") no-repeat center center/cover;
    color: #fff;
}

section.testimonials[data-overlay-dark]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

section.testimonials .container {
    position: relative;
    z-index: 2;
}

.section-head h6 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.section-head h4 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.testim {
    display: flex;
    gap: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.testim .item {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.testim .quote-icon img {
    width: 30px;
    margin-bottom: 10px;
}

.testim .cont p {
    font-size: 1rem;
    font-style: italic;
}

.testim .info {
    margin-top: 15px;
}

.testim .info .author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #fff;
}

.testim .info h6 {
    font-size: 1rem;
}

.navs {
    text-align: center;
    margin-top: 20px;
}

.navs span {
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s;
}

.navs span:hover {
    color: #007bff;
}

/* Mobile View */
@media (max-width: 768px) {
    section.testimonials .testim {
        overflow-x: scroll;
        flex-wrap: nowrap;
    }

    .navs span {
        display: inline-block;
    }
}
