/* General styles */
body {
    font-family: 'IBM Plex Mono', monospace;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
}
html, body {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
header {
    background-color: #6a1b9a;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}

.navlist {
    list-style: none;
    display: flex;
    gap: 1em;
}

.navlist li {
    padding:5px;
}

.navlist a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Audiowide', cursive;
    font-size: 22px;
}

.nav-right {
    display: none;
}

.banner {
    position: relative;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

.banner .content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6a1b9a;
    font-weight: bold;
    text-align: center;
    padding: 1em;
   
    border-radius: 10px;
}

.banner .content h2 {
   font-family: Rubik;
letter-spacing: 3px;
    font-size: 80px;
     -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    -webkit-text-stroke:2px white;
    text-shadow: 2px red;
    backdrop-filter: blur(12px);
    border-radius: 60px;
}

.banner .content p {
    font-size: 40px;font-family: Rubik;
}

.banner .content h3 {
    font-family: Rubik;
    font-size: 1.5em;
}
.brain{
    margin: 20px;  padding: 20px;
    border-radius: 10px;
}
.brain a{
    margin: 20px;
    padding: 20px;
    font-size: 40px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid black;
     border-radius: 10px;
     box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}
section {
    padding: 2em 1em;
    margin:20px 0;

}
span{
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
     -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    -webkit-text-stroke:1px red;
    font-family: Rubik;
}
.services {
    background-color: #fff;
    text-align: center;
    align-items: center;
}

.services h1 {
    color: #6a1b9a;
    margin-bottom: 1em;
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;font-family: Rubik;
}

.services .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
     box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.service-item {
    flex: 1;
  
    background: #f3e5f5;
    border-radius: 10px;
   width: 100%;
   margin-top: 30px;
   margin:  auto;
  max-width: 80%;
   align-items: center;
   text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.service-item h2 {
    color: #6a1b9a;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
   font-family: Rubik;

}
.service-item p{
    font-size: 25px;
    letter-spacing: 2px;
    padding: 20px;
}
.about {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
    padding: 2em 1em;
}

.about .contentBx {
    flex: 1;
    padding: 1em;
}

.about .heading {
    font-size: 2em;
    color: #6a1b9a;
}

.about .text {
    line-height: 1.6;
}

.contentBx .imgBx{
    width: 100%;
    background-image: url(folder-img/cd16.jpg);
}

.call-to-action {
    text-align: center;
    background-color: #e1bee7;
    padding: 2em;
}

.call-to-action .content {
    max-width: 600px;
    margin: 0 auto;
}

.call-to-action h1 {
    color: #6a1b9a;
    margin-bottom: 1em;
}

.call-to-action p {
    font-size: 1.2em;
    margin-bottom: 1em;
}

.call-to-action .btn {
    background-color: #6a1b9a;
    color: #fff;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 5px;
}

footer {
    background-color: #6a1b9a;
    color: #fff;
    text-align: center;
    padding: 1em;
}

footer ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1em;
}

footer ul a {
    color: #fff;
    text-decoration: none;
}

footer p {
    margin: 0;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .banner .content h2 {
        font-size: 1.8em;
    }

    .banner .content h3 {
        font-size: 1.2em;
    }

    .about .heading {
        font-size: 1.8em;
    }

    .about .text {
        font-size: 1em;
    }
}

@media (max-width: 920px) {
    .nav-right {
        display: block; /* Show the hamburger menu icon on mobile/tablets */
    }

    .navlist {
        display: none; /* Hide the navlist initially */
        flex-direction: column; /* Set the navlist to display in a column when shown */
        background-color: #6a1b9a;
        position: absolute;
        top: 60px; /* Adjust position so it appears below the header */
        right: 0;
        width: 100%;
        padding: 1em;
        text-align: center; /* Center the nav items */
    }

    .navlist.open {
        display: flex; /* Show the navlist when the hamburger menu icon is clicked */
    }

    .navlist li {
        padding: 1em;
    }

    .bx-menu {
        cursor: pointer;
        font-size: 34px; /* Adjust size of the hamburger menu icon */
        color: white;
    }

    header {
        justify-content: space-between;
        padding: 1em;
    }
}

/* Adjustments for smaller widths */
@media (max-width: 576px) {
    .banner .content h2 {
        font-size: 1em;
    }

    .banner .content h3 {
        font-size: 0.8em;
    }

    .navlist a {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 360px) {
    .navlist {
        top: 20px;
        height: 70px;
    }
    .navlist a{
        font-size: 15px;

    }
    header{
        padding: 20px;
         height: 100px;
    }
   header .logo {
    font-size: 10px;
   margin-left: 0px;
 

}
.banner{
    height: auto;
}

    
     .content p{
        font-size: 17px;
    }
}

    .about .heading {
        font-size: 1.2em;
    }

    .about .text {
        font-size: 0.9em;
    }
}

