* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}
::selection{
    background-color:#a517ba;
}

a {
    all: unset;
}
html {
    scroll-behavior: smooth;
}
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background-color: #5f1782;
}

::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 5px;
}
/* --------------------------------------------------- */

#nav-bar {
    position: static;
    top: 0;
    z-index: 10;
    position: sticky;
}

.navbar {
    background-image: linear-gradient(to right, #a517ba, #5f1782);
    padding: 0 !important;
}

.nav-item {
    cursor: pointer;    
    transition: 0.3s;
}
.nav-item:hover {
    background-color: #484545;
}

#word {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Space between letters */
}

.letter {
    display: inline-block;
    font-size: 25px;
    /* Adjust font size */
    font-family: Arial, sans-serif;
    /* Choose your desired font */
    color: purple;
    /* Text color */
    background: white;
    /* Background for each "cut-out" */
    border: 2px solid purple;
    /* Border for each letter block */
    padding: 10px;
    /* Space inside each block */
    transform: rotate(calc(var(--rotation, 0) * 1deg));
    position: relative;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    /* Shadow effect */

}
.letter2 {
    display: inline-block;
    font-size: 15px;
    /* Adjust font size */
    font-family: Arial, sans-serif;
    /* Choose your desired font */
    color: purple;
    /* Text color */
    background: white;
    /* Background for each "cut-out" */
    border: 1px solid purple;
    /* Border for each letter block */
    padding: 5px;
    /* Space inside each block */
    transform: rotate(calc(var(--rotation, 0) * 1deg));
    position: relative;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    /* Shadow effect */

}

/* Add randomness for letter rotations */
.letter:nth-child(1) , .letter2:nth-child(1) {
    --rotation: -5;
    /* Adjust rotation for "l" */

}

.letter:nth-child(2) , .letter2:nth-child(2){
    --rotation: 5;
    /* Adjust rotation for "O" */
    font-weight: 800;
}

.letter:nth-child(3) , .letter2:nth-child(3){
    --rotation: -7;
    /* Adjust rotation for "g" */
}

.letter:nth-child(4) , .letter2:nth-child(4){
    --rotation: 3;
    /* Adjust rotation for second "O" */
    font-weight: 800;
}

.navbar-brand {
    position: relative;
    left: 20px;
    cursor: pointer;
}

.navbar-nav li {
    padding: 0 10px;

}

.navbar-nav li a {
    color: #ffffff !important;
    font-weight: 600;
    text-align: left;
}

.navbar-toggler {
    outline: none !important;
}

.navbar-toggler-icon {
    color: #ffffff;
    font-size: 30px !important;
}

/* -------------------------------banner seciton------------- */
#banner {
    background-image: linear-gradient(to right, #a517ba, #5f1782);
    color: #ffffff;
    padding-top: 5%;
    z-index: 1;
}

.promo-title {
    font-size: 60px;
    font-weight: 600;
    margin-top: 100px;
}

.bx-play-circle {
    font-size: 30px;
    margin: 10px;
}

#banner a {
    color: #ffffff;
    text-decoration: none;
}

.bottom-img {
    width: 100%;
}
/* -------------------------------about section------------- */
#services {
    padding: 80px 0;
    z-index: 1;
}
.service-img{
    width: 100px;
    margin-top: 20px;
}
.services{
    padding: 0 80px 0 80px;
}
.services h4{
    padding: 5px;
    margin-top: 25px;
    text-transform: uppercase;
    font-weight: 600;
}
.title{
    font-size: 30px;
    font-weight: 600;
    margin-top:8%;
    margin-bottom: 20px;
    color: #343a40;
}
.title::before{
    content: "";
    background: #7b1798;
    height: 5px;
    width: 200px;
    margin: 0 auto;
    display: block;
    transform: translateY(63px);
}
.title::after{
    content: "";
    background: #7b1798;
    height: 10px;
    width: 50px;
    margin: 0 auto;
    display: block;
    transform: translateY(19px);
    border-radius: 5px;
}
.btn{
    background-image: linear-gradient(to right, #a517ba, #5f1782);
    border-radius: 25px;
    padding: 10px 20px;
    margin: 20px;
    transition: all 0.5s ease;
}

.btn:hover{
    background-image: linear-gradient(to right, #5f1782, #a517ba);
    color: #ffffff;
    transform: scale(1.2);
}
/* ------------------------------about-us section ------------------------------ */
#about{
    padding: 80px 0;
    background-color: #f8f9fa;
    z-index: 1;
}
.about-title{
    font-size: 40px;
    font-weight: 600;
    margin-top:8%;
    margin-bottom: 20px;
    color: #343a40;
}
ul {
    list-style-type: disc; /* You can change to custom icons if desired */
    list-style-position: inside; /* Aligns bullets with text */
    margin: 0;
    padding: 0 0 0 20px; /* Adds indentation */
    line-height: 1.8; /* Increases line height for better readability */
    color: #495057; /* Slightly lighter than #343a40 */
    font-size: 1.1rem; /* Adjust based on preference */
}

ul li {
    padding-bottom: 10px; /* Adds spacing between items */
}

ul li::marker {
    color: #7b1798; /* Customizes bullet color */
    font-size: 1.2rem; /* Makes bullets slightly larger */
}

/* ------------------------------testmonials section ------------------------------ */
#testimonials{
    margin: 100px;
    z-index: 1;
}
.testimonials{
    border-left: 4px solid #7b1798;
    margin: 50px 0;;
}
.testimonials img{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin: 0 10px;
}
/* ------------------------------links section ------------------------------ */
#links{
    padding: 80px 0;
    z-index: 1;
}
.jana{
    font-size: 40px;
    font-weight: 600;
}
.social-icons img{
    width: 60px;
    transition: 0.6s;
    cursor: pointer;
}
.social-icons a:hover img{
    transform: translateY(-10px);
}
/* ------------------------------footer section ------------------------------ */
#footer{
    background-image: linear-gradient(to right, #a517ba, #5f1782);
    color: #fff;
}
.footer-img{
    width: 100%;
}
.powerful-text{
    font-size: 15px;
    margin: 20px auto;
}
.footer-box p i{
    margin-right: 8px;
    font-size: 25px;
    height: 40px;
    width: 40px;
    text-align: center;
    padding-top: 7px;
    border-radius: 2px;
    background-image: linear-gradient(to right, #a517ba, #5f1782);      
}
.contact{
    font-size: 30px;
    font-weight: 800;
}
.form-control{
    border-radius: 10px;
    width: 400px;
    margin: 20px auto;
}