@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url(https://fonts.googleapis.com/css?family=Khula:700);

:root {
    --color: #000;
    --color2: #fff;
    --button: #391053;
    --button1: #5a2675;
    --dark-purple: #391053;
    --purple3: #9d72b3;
    --purple4: #c9a8f1;
}

/* ::selection{
    color: var(--button);
} */
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;

}

/* .header{
    background-color: var(--color2);
    border-bottom-left-radius:20px ;
    border-bottom-right-radius:20px ;
    
} */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 20px; */
    padding: 10px 20px;
    /* background-color: #333; */
    color: black;
    position: relative;
    z-index: 10;

}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: black;
    text-decoration: none;
    margin-left: 40px;
}

.signup-btn {
    color: white !important;
    background-color: var(--button);
    padding: 5px 10px;
    border-radius: 5px;
}

.search-bar {
    padding: 5px;
    border-radius: 5px;
    border: none;
    margin-right: 20px;
}


.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: 3px solid var(--button);
    border-right: none;
    padding: 5px;
    height: 20px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #9DBFAF;
}

.searchTerm:focus {
    color: var(--button);
}

.searchButton {
    width: 40px;
    height: 36px;
    border: 1px solid var(--button);
    background: var(--button);
    text-align: center;
    color: black;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap {
    width: 30%;

}

.icon {
    color: white;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    height: 3px;
    width: 25px;
    background-color: black;
    margin: 4px 0;
}


.mob-wrap {
    display: none;
}

/* body {
  background: #111;
} */
.hidden {
    opacity: 0;
}

.console-container {

    font-family: "Open Sans", sans-serif;
    font-size: 2em;
    /* text-align:center; */
    /* height:200px; */
    /* width:600px; */
    display: block;
    position: relative;
    color: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 30px;
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.14em;
    left: 10px;
}

/* main  */
/* .main{
    width: 100%;
    align-items: center;

}
.imgg{
    width: 100%;
} */


.slider {
    width: 100%;
    /* max-width: 600px; */
    overflow: hidden;
    /* position: absolute; */
}

.slides {

    display: flex;
    /* width: 300%; */
    animation: slide 12s infinite;
    /* gap: 20px; */
}

.slide {
    width: 100%;
    flex-shrink: 0;
    align-items: center;
    /* margin: 0 10px;  */
}

.slide img {
    width: 100%;
    display: block;
    /* margin: 10px; */
    /* border-radius: 20px;  */
}


@keyframes slide {
    0% {
        transform: translateX(0);
    }

    33.33% {
        transform: translateX(0);
    }

    44.44% {
        transform: translateX(-100%);
    }

    77.77% {
        transform: translateX(-100%);
    }

    88.88% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}


.mobile-slider {
    display: none;
}

/* main  */


/* services  */

.service-heading {
    color: var(--button);
}

.container {
    display: flex;
    flex-wrap: wrap;
}

.services-section {
    width: 70%;
    padding: 20px;
}

.image-section {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.service-item a {
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-item img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--button);
    margin-bottom: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s, transform 0.3s;

}

.service-item img:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}


.service-item p {
    margin: 0;
    font-size: 14px;
    color: var(--button);
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.more {
    display: none;
}




/* services  */
/* desc  */

.desc {
    margin: 10px;
    padding: 30px;
    border: 2px solid var(--button);
    border-radius: 25px;
    text-indent: 5ch;
    -webkit-box-shadow: 12px 10px 56px -5px rgba(90, 38, 117, 0.65);
    -moz-box-shadow: 12px 10px 56px -5px rgba(90, 38, 117, 0.65);
    box-shadow: 12px 10px 56px -5px rgba(90, 38, 117, 0.65);
    background-color: var(--button);
}

.para {
    color: var(--color2);
    text-align: justify;
}

/* desc  */


/* ser  */

.ser-one {
    margin: 30px;
    /* padding: 20px; */

}

.ser-one h2 {
    color: var(--button);
}

.block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* Allow wrapping on larger screens if needed */
    gap: 5px;
}

.block-service {
    width: 23%;
    /* Adjust width as needed */
    margin-bottom: 20px;
    position: relative;

    border-radius: 10px;

}

.block-service img {
    width: 100%;
    border-radius: 10px;
    /* Adjust radius as needed */
}

.block-service p {
    position: absolute;
    bottom: 5px;
    left: 10px;
    background-color: #59267570;
    /* Adjust background color and opacity */
    color: white;
    padding: 5px;
    border-radius: 5px;
}

/* Mobile View */
@media (max-width: 768px) {
    .block {
        flex-wrap: nowrap;
        /* Prevent wrapping on small screens */
    }

    .block-service {
        width: 50%;
    }

    .block-service p {
        font-size: x-small;
    }
}

/* ser  */


/* footer  */
.footer {
    padding: 30px 0;
    background-color: var(--button);
}

.social-item {
    color: var(--color2);
    text-align: center;
}

.social-item a {
    color: var(--color2);
    width: 40px;
    height: 40px;
    margin: 1rem;
    opacity: 0.8;
    line-height: 38px;
    font-size: 1.4rem;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1.4px solid #ccc;

}

.social-item a:hover {
    opacity: 1;
}

.list {
    padding: 0;
    margin-top: 0;
    font: 18px;
    line-height: 1.6;
    list-style: none;
    margin-bottom: 0;
    text-align: center;
}
.list a{
    opacity: 0.8;
    color: var(--color2);
    text-decoration: none;
}
.list li{
    padding: 0 15px;
    display: inline-block;

}
.list a:hover{
    opacity: 1;
}
.copyright{
    font-size: 14px;
margin-top: 15px;
text-align: center;
color: rgb(181, 175, 175);

}
/* footer  */

@media (max-width: 768px) {

    /* .header{
        background-color: var(--button);
        
    } */
    .navbar {
        margin: 0;

    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        background-color: var(--button);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        z-index: 20;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .menu-icon {
        display: flex;
    }

    .wrap {
        display: none;
    }

    .mob-wrap {
        display: block;
        margin: 10px;
    }

    .navbar.active .nav-links {
        display: flex;
    }

    .signup-btn {
        color: var(--button) !important;
        background-color: var(--color2);

    }

    .console-container {
        font-size: .8em;
        margin: 11px;
        /* color: #fff !important; */
    }

    .nav-links {
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .nav-links a {
        color: var(--color2);

    }

    .slider {
        position: relative;
        z-index: 1;
    }

    .mobile-slider {

        display: block;
        width: 100%;
        overflow: hidden;
    }

    .swiper-container {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 auto;
        margin-top: 10px;
        padding: 0 4px;
        box-sizing: border-box;

    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }

    .swiper-pagination {
        position: absolute;
        bottom: 10px;
        /* Adjust as needed */
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        /* Ensure pagination is above the images */
        text-align: center;

    }

    .swiper-pagination-bullet {
        background: #bbb !important;
        /* Default color for inactive dots */
    }

    /* Style the active pagination bullet */
    .swiper-pagination-bullet-active {
        background: #5a2675 !important;
        /* Color for active dot */
    }

    .services-section {
        width: 100%;
        order: 1;
    }

    .image-section {
        width: 100%;
        order: 2;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .more {
        display: block;
    }
    .image-section {
        display: none;
    }
}