body{
    background-color: #020202;
    background-position: center;
   transition: 3s ease;
}


  
  

body{
    /* background: linear-gradient(to bottom, #CC00FF, #F94242,#D26500);  */
    background-image: url("img/images.jpg");
    background-repeat: repeat;
    overflow-x: hidden;
    /* height: 100vh;
    background-size: cover; */ 
  }
body::-webkit-scrollbar {
    width: 5px; /* Set the width of the scrollbar */
}
body::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); /* Set the color of the scrollbar thumb (the draggable part) */
    border-radius: 6px; /* Add rounded corners to the scrollbar thumb */
}

body::-webkit-scrollbar-track {
    background-color: #222222; /* Set the color of the scrollbar track (the area behind the thumb) */
}
/* Add this style rule to your existing CSS file or create a new one */


/* Navbar Css */

.whatsaap{ 
    position:fixed;
    bottom:2%;
    right:2%;
    z-index: 100;
    
}
.whatsaap img{
    height:100px;
    width:100px;
}
.whatsaap:hover + .whatsaapthinking {
    display: block;
    position: fixed;
    bottom: 15%;
    right: 1%;
    z-index: 100;
    font-size: large;
    font-weight: bold;
    border-radius: 10%;
    padding: 10px;
    background-color: #303030; /* Set the background color to transparent */
}
.whatsaapdiv{
    background: linear-gradient(to right, #CC00FF, #F94242, #D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.whatsaapthinking {
    display: none;
    background-color: #cecdcd;
}




.navbar-nav  li  a{
    /* background: -webkit-linear-gradient(#d400ff, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color:rgb(252, 254, 255);
    margin-right:15px;
    text-shadow: 2px 2px 2px #ff00f7;
    text-align: center;
    
}

.navbar button{
    color:#ffffff;
     background: linear-gradient(to right, #CC00FF, #F94242,#D26500);
    font-weight: bold;
    margin: 2%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.navbar-nav  li  a.active  {
            text-decoration: underline;
            text-decoration: none; /* Remove default underline */
            padding-bottom: 20px; /* Add some space between text and line */
            background: linear-gradient(to right, #CC00FF, #F94242,#D26500); /* Gradient color for the line */
            background-position: 50% 100%; /* Position the gradient at the bottom */
            background-repeat: no-repeat; /* Do not repeat the gradient */
            background-size: 50% 2px;
            color: #bcbaba;
            
             /* Set the size of the gradient line */
            /* border-radius: 20px; Create rounded corners to make it capsule-shaped */
}

.navbar-nav  li  a:hover  {
    text-decoration: underline;
    text-decoration: none; /* Remove default underline */
    padding-bottom: 20px; /* Add some space between text and line */
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); /* Gradient color for the line */
    background-position: 50% 100%; /* Position the gradient at the bottom */
    background-repeat: no-repeat; /* Do not repeat the gradient */
    background-size: 50% 2px;
    color:#ffffff;
    position:relative;
    bottom:10px;
    
     /* Set the size of the gradient line */
    /* border-radius: 20px; Create rounded corners to make it capsule-shaped */
}

.navbar::after {
    content: ''; /* Required for pseudo-elements */
    display: block; /* Make it a block element to allow for setting width and height */
    width: 100%; /* Set the width to 100% of the a nchor container */
    height: 2px; /* Set the height of the line (adjust as needed) */
     background: linear-gradient(to right, #CC00FF, #f94242a3,#D26500); /* Gradient color for the line */
    position: absolute; /* Position it absolutely within the anchor container */
    bottom: 0; /* Position it at the bottom of the anchor container */
    border-radius: 10px; /* Add rounded corners to the line */
}
.navbar{ 
    padding: 0px;
}
.navbar-div{
    background-color: #1a1919;
    /* background: linear-gradient(to top, #180460, #000000); */
   
}
.navbar-brand img{
    height: 80px;
    width: 220px;
}

@media screen and (max-width:700px) {
    .navbar-brand img{
        height: 40px;
        width: 100px;
    }
    .navbar-toggler-icon{
        height: 20px;
        width: 20px;
    }
    .whatsaap img{
        height:70px;
        width:70px;
        
    }
    .navbar-nav  li  a  {
        text-decoration: none; /* Remove default underline */
        font-size: small;
    }
    .navbar-nav  li  a.active  {
        text-decoration: none;
        background: none; 
    }
    .navbar button{
        font-size: small;
    }
    .navbar-collapse{
        text-align: center;
    }
    
}

/* popup form  */

 /* Styles for the custom modal */
 .custom-modalmsg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    background-color: #191818d2;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 10%;
    
}

.custom-modalmsg h2{
  background: linear-gradient(to bottom, #CC00FF, #f94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
    
/* Style for the overlay */
.overlaymsg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(91, 91, 91, 0.66);
    z-index: 999;
}

/* Style for the close button */
.close-btn {
    cursor: pointer;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to bottom, #CC00FF, #f94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* Styles for the overlay background */
.overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    backdrop-filter: blur(5px); /* Apply background blur for a glass effect */
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Styles for the popup form */
  .popup {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background for a glass effect */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
  }

  /* Styles for the close button */
  .close-btn {
    cursor: pointer;
    position: absolute;
    top: 6px;
    right: 15px;
    font-size: 35px;
    color: #999999; /* Close button color */
  }


/*  footer  */
.footer-box{
    background-color: #1a1919;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: aliceblue;
    
}
.subdetails{
    margin: 30px;
    text-shadow: 2px 2px 2px #ff00f7;
    font-size: larger;
}
.footer-details h2{
    margin: 25px;
     background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-details p a{
    color:#ffffff;
    text-decoration: none;
}
/* carousel  */

/* Add your custom styles here */

.carousel .carousel-item h2{
           
    text-align: left;
    position: relative;
    top: 30%;
    margin-left: 10%;
    color: azure;
    font-size: 3rem;
    text-shadow: 2px 2px 2px #969595;
    
}
.carousel{
    background-image: url(../img/4x/Asset\ 6@4x.png);
    background-size: cover;
}

.carousel .carousel-item logo{
  background: linear-gradient(to bottom, #CC00FF, #f94242, #D26500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-size: larger;
}

@media screen and (max-width:900px) {
    
.carousel .carousel-item h2{
    font-size: 2rem;
   
    top: 0;
}


.carousel .carousel-item img{
    height:auto;
    width:auto;
}
.carousel{
    height:800px;
}

.carousel .carousel-item logo{
    
      font-size: 2rem;
  }

  .subdetails{
    text-align: center;
    font-size:medium;
}

.footer-details h2{
    text-align: center;
}
    
}

/* about us  */



.aboutus_img h1{
     background: linear-gradient(to bottom, #CC00FF, #f94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 2%;
}

.aboutus_img p{
    /* background: -webkit-linear-gradient(#76adff, #00f2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color:#9e9a9a;  
    font-size: 25px;
    font-weight: 400;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 1%;
}
.aboutus_img{
    text-align: center;
    color:rgb(218, 235, 249);
    /* margin:30px; */
    /* background: linear-gradient(to top, #180460, #000000); */
}
.aboutus_home{
    background-color: #0f0f0f;
}


.aboutus_img .backimg{
    /*   */
    position: relative;
    top:100px;
    
}

.aboutus_details{
    
}
.aboutus_details img{
    height:500px; 
    width:400px;
}

@media screen and (max-width:770px) {
    .aboutus_details img{
        height:300px; 
        width:200px;
    }
    .aboutus_img .backimg{
        /*   */
        position: relative;
        top:0px;
        
    }
    /* .aboutus_img h1{
       font-size: large;
   }
    */
   .aboutus_img p{
      font-size:medium;
   }
}

/* Courses */

.courses_home h1{
    text-align: center;
    background: linear-gradient(to bottom, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.courses_home h3{
    text-align: center;
    background: linear-gradient(to bottom, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.courses_home {
    background-image: url("../img/4x/Asset\ 6@4x.png");
    background-size: contain;
    background-repeat:repeat-y;
    padding: 2%;
    
}

.course img{
    
    height: 150px;
    width: 200px;
}


/* Add this CSS code to your stylesheet */

  
.course {
    background: rgba(20, 20, 20, 0.87); /* Set a semi-transparent background color */
    border-radius: 15px;
    margin: 20px;
    transition: transform 0.3s ease;
}
.course:hover{
    border: 2px solid;
    border-image: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    border-image-slice: 1;
    transform: scale(1.1);
    /* animation-name: imagesposition;
    animation-duration: 1s; */
}

.course::after {
    content: '';
    box-shadow: inset 0 0 0 30px rgba(42, 42, 42, 0.6);
    filter: blur(5px);
    border-radius: 15px;
    /* Place it behind the content */
}

.courses_content {
    padding: 20px;
}

.courses_content  .row span{
    color:#cecdcd;
}

.courses_content i{
    background: linear-gradient(to right, #CC00FF,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.course .courseimg {
    position: relative;
    top: 0;
    left:20%;
}

.course_detail{
    
    position:fixed;
    top:15%;
    left: 7%;
    background: rgba(66, 64, 64, 0.5); /* Semi-transparent black background */
    backdrop-filter: blur(5px); /* Apply background blur for a glass effect */
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 15px rgba(255, 248, 248, 0.653);
    border-radius: 25px;
    height:550px;
    z-index:10000;
}
.course_detailnone{
    display:none;
}

.course_detail .details{
    color:#cfcece;
    font-size: larger;
    /* text-align: center; */
    padding:5%;
}
.course_detail ul li {
    padding: 5px;
    margin: 1px 0;
    list-style-type: none;
   
    border-radius: 5px;
    position: relative;
    overflow: hidden;
  }
.course_detail ul li::before {
    content: ""; /* Unicode character for a bullet point */
    color: transparent; /* Make the text color transparent */
    background: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    border-radius: 50%; /* Create a circular bullet point */
    padding: 5px; /* Adjust padding for the bullet point */
    margin-right: 10px; /* Add space between the bullet point and text */
    position: relative;
    z-index: 1; /* Ensure the bullet point is on top of the background */
  }
.fullbodynone{
    display:none;
}
.fullbody{
    
    position:fixed;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;
    filter: blur(10px);
    background-color: #000000de;
    z-index: 1000;
    
}

.course_detail .img{
    display: flex;
    justify-content: center;
}

.download_syllabus{
    
    display: flex;
    justify-content: center;
    /* margin-top: 20px; */
}
.download_syllabus button{
    /* margin: 2%; */
    background: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    color: aliceblue;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 30px;
    /* transition: background 0.3s ease; */
}






@media screen and (max-width: 1400px) {
    
   
    .course .courseimg {
        position: relative;
        top: 0;
        left:30%;
    }
    .course_detail ul li{
        font-size: medium;
        
    }
    .course_detail img{
        display: none;
        
    }
    .download_syllabus{
    
        margin-top: 50%;
    }
    
}

@media screen and (max-width: 900px) {
    
   
    .course .courseimg {
        position: relative;
        top: 0;
        left:30%;
    }
    .course_detail ul li{
        font-size: small;
        
    }
    .course_detail img{
        display: none;
        
    }
    .download_syllabus{
    
        margin-top: 0%;
    }
}
@media screen and (max-width:770px) {
    .course img{
    
        height: 100px;
        width: 150px;
    }
    
    .course .courseimg {
        position: relative;
        top: 0;
        left:20%;
    }

    .course_detail{
        width: fit-content;
        position:fixed;
       
        left: 0px;
        
    }

    .course_detail ul li{
        font-size: small;
        padding: 0px;
        padding-left: 1px;
        margin: 0;

        
    }
    .course_detail img{
        display: none;
        
    }


}

/* why us  */

.why_us {
            
    color: aliceblue;
    text-align: center;
    background-color: #0f0f0f; 
    padding: 2%;
}
.why_us logo {
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.honeycomb-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
   
}

.hexagon {
    width: calc(350px - 30px); /* Subtracting 2 * margin (15px on each side) */
    height: 350px;
    position: relative;
    margin: 15px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    background-color: rgba(42, 42, 42, 0.6);
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    
}
.hexagon:hover{
    border: 2px solid;
    border-image: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    border-image-slice: 1;
    transform: scale(1.1);
}

.hexagon p{
    color: rgb(170, 169, 169);
    font-size: small;
   
    /* background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.hexagon h4{
    color: aliceblue;
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hexagon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.inner-content {
    width: 80%;
    height: 100%;
    
    /* box-shadow: 5px 5px 10px rgba(42, 42, 42, 0.8); */
    display: flex;
    align-items: center;
    justify-content: center; /* Add box shadow to the inner content */
    flex-direction: column; /* Align text vertically */
    padding-left:30px;
    padding-right: 30px;
    text-align: center;
}
.inner-content .img{
    position: relative;
    /* border-radius: 50%; */
    margin-bottom: 20px;
}




/* contactus  */

.contactus_home{
    background-color: #000000e6;
}

.contact-form h1{
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}
.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5%;
    
    /* height: 100vh; */
}
.contactus_home .info {
    background-color: rgba(52, 52, 52, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(44, 44, 44, 0.8);
    margin: 5%;
    width: 90%; 
    font-size: medium;
   padding: 10px;
    
    
    /* height: 100vh; */
}
.contactus_home .info h4{
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
   
    
}
.contactus_home .info i{
    padding: 5%;
    
}
.contactus_home .info a{
   text-decoration: none;
    
}


.contact-form,
.map-container {
    background-color: rgba(52, 52, 52, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(44, 44, 44, 0.8);
    margin: 1%;
    width: 90%; /* Adjust as needed */
    max-width: 600px;
    transition: 0.3s ease; /* Adjust as needed */
}

.contact-form:hover,
.map-container:hover{
    border: 2px solid;
    border-image: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    border-image-slice: 1;
    
}
.contact-form {
    padding: 30px;
}

.map-container {
    padding: 15px;
    overflow: hidden;
    height:100px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #bcbaba;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: aliceblue;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    color: aliceblue;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 80px; /* Adjust height as needed */
    border: 0;
}

@media screen and (min-width: 768px) {
    .contact-container {
        flex-direction: row;
    }
    .map-container {
        height: auto;
    }
    iframe {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    border: 0;
}
}


/* gallery page  */
.gallery_home h1{
    color: aliceblue;
    text-align: center;
    padding: 1%;
    margin-top: 1%;
}
.gallery_home logo{
    background: linear-gradient(to right, #CC00FF, #F94242,#D26500); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gallery_home{
    background-image: url("../img/4x/Asset\ 6@4x.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    
}

.gallery-item {
    width: 300px;
    height: 300px;
    margin: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: rgba(54, 54, 54, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(65, 65, 65, 0.8);
    border-radius: 10px;
    transition: transform 0.3s ease;
    padding: 1%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}
.gallery-item img:hover {
    filter: brightness(100%);
}

.gallery-item:hover {
    transform: scale(1.1);
    
}

.gallery-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid;
    border-image: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    border-image-slice: 1;
    border-radius: 10px;
}

.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-more-button {
    
    margin: 2%;
    background: linear-gradient(to right, #CC00FF, #F94242, #D26500);
    color: aliceblue;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;

}

.view-more-button:hover {
    background: linear-gradient(to right, #F94242, #CC00FF, #D26500);
    border: 2px solid transparent;
}






