@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    text-transform: capitalize;
}
body::-webkit-scrollbar {
    width: 12px; /* width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background-color: #333; /* color of the track */
}

body::-webkit-scrollbar-thumb {
    background-color: cyan; /* color of the thumb */
    border-radius: 6px; /* roundness of the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background-color: darkcyan; /* color of the thumb on hover */
}

.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: linear-gradient(rgba(12, 3, 51, 0.3), rgba(12, 3, 51, 0.3));
    border: 7px solid #00acb59b;
    /* Adjust color and width as needed */
    box-sizing: border-box;

}

nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul li {
    list-style-type: none;
    display: inline-block;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.content {
    text-align: center;
    margin-top: -40px;
    /* Added margin for better spacing */
}

.content h1 {
    font-size: 140px;
    /* Adjusted font size for better responsiveness */
    color: #fff;
    font-weight: 600;
    transition: 0.5s;
    text-align: center;
}

.content h1:hover {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}
.content p,
.content a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 10px 30px;
    border-radius: 5px;
    margin-top: 5px;
    background-color: rgba(51, 51, 51, 0.5); /* Transparent background */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.content p:hover {
    color: #00ADB5;
    background-color: rgba(51, 51, 51, 0.9); /* Darker background on hover */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Subtle white shadow */
}

.back-video {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Added object-fit property */
    filter: blur(4px);


}

.container {
    background-image: url(images/adminbg.png);
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
    background-color: #1d1c1c;
    background-size: cover;
    padding: 15px 9%;
    padding-bottom: 100px;
}

.container p{
color: #fff;
text-align: center;
}
.container .heading {
    text-align: center;
    padding-bottom: 15px;
    color: aliceblue;
    text-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    font-size: 50px;
}

.container .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 15px;
    max-width: 1120px;  
margin: 0 auto; 
}

.container .box-container .box {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    border-radius: 5px;
    background: #fff;
    text-align: center;

    padding: 30px 20px;
    position: relative; /* Added position relative */

}

.container .box-container .box img {
    height: 500px;
}

.container .box-container .box h3 {
    color: #444;
    font-size: 22px;
    padding: 10px 0;
}

.container .box-container .box p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}

.container .box-container .box .btn {
    margin-top: 10px;
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 17px;
    border-radius: 5px;
    padding: 8px 25px;
}

.container .box-container .box .btn:hover {
    letter-spacing: 1px;
}

.container .box-container .box:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
}

/* Add this CSS to your existing style block */
/* Add this CSS to your existing style block */
.concert-image {
width: 100%; /* Adjust the width as needed */
max-width: 100%; /* Make it responsive */
height: auto; /* Maintain the aspect ratio */
transition: transform 0.3s ease-in-out;
}

.concert-image:hover {
transform: scale(1.1); /* Adjust the scale factor for the hover effect */
}


.row.secondary {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background-color: #1b757a;
    color: #ffffff;
  }
  .row.secondary i {
    font-size: 1.8em;
    color: #00ADB5;

  }
  .row.secondary div {
    padding: 1em 0;
    width: 100%;
  }
  .row.secondary div:hover {
    background-color: #25262e;
  }
  .copyright {
    padding: 0.3em 1em;
    background-color: #25262e;
  }
  .copyright p {
    font-size: 0.9em;
    text-align: center;
    color: aliceblue;
  }

@media (max-width:768px) {
    .container {
        padding: 20px;
    }
}

@media (min-width: 1200px) {
.container .box-container {
    max-width: 1120px;  

}
}

@media only screen and (max-width: 768px) {
    .content h1 {
        font-size: 90px;
        /* Adjusted font size for smaller screens */
    }

    .content p,
    .content a {
        font-size: 12px;
        /* Adjusted font size for smaller screens */
        padding: 8px 20px;
        /* Adjusted padding for smaller screens */
    }
}


@media only screen and (max-width: 488px) {
    .content h1 {
        font-size: 50px;
        /* Adjusted font size for smaller screens */
    }

    .content p,
    .content a {
        font-size: 12px;
        /* Adjusted font size for smaller screens */
        padding: 8px 20px;
        /* Adjusted padding for smaller screens */
    }
}



@media only screen and (max-width: 275px) {
    .content h1 {
        font-size: 20px;
        /* Adjusted font size for smaller screens */
    }

    .content p,
    .content a {
        font-size: 12px;
        /* Adjusted font size for smaller screens */
        padding: 8px 20px;
        /* Adjusted padding for smaller screens */
    }
}