html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: sans-serif; */
    font-style: normal;
}

section {
    padding-left: 50px;
    padding-right: 40px;
    padding-bottom: 60px;
}

body {
    background-image: url('images/background.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%; 
    height: 100%;
    min-height: 100vh;
}


.navigation {

    background-color: rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100px;
    inset: 20px 0px 20px -15px;
    /*changed inset*/
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);

}

.navigation ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.navigation ul li {
    list-style: none;
    position: relative;
    width: 100%;
    height: 60px;
    padding: 0px 28px;
    transition: 0.5s;
}

.navigation ul li.active {
    transform: translateX(25px);
}



.navigation ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    text-decoration: none;
}

.navigation ul li a .icon {

    position: relative;
    display: block;
    min-width: 55px;
    height: 55px;
    line-height: 60px;
    transition: 0.5s;
    border-radius: 50%;
    /*here border radius changed from 10px to 50%*/
    font-size: 1.75em;
    font-weight: bold;
    color: rgb(237, 244, 244);
}

.navigation ul li:hover a .icon {
    color: rgb(69, 229, 250);
}

.navigation ul li.active a .icon {
    color: #fff;
    background: var(--clr);


}

.navigation ul li a .icon::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr);
    filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    border-radius: 20%;
}

.navigation ul li.active a .icon::before {
    opacity: 0.5;
}

.banner {
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
    height: 550px;
    /* max-width: 100%; */
    width: auto;
    /* min-height: 100vh; */
    margin-left: 100px;
    margin-top: 20px;
    margin-bottom: 40px;
    margin-right: 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.welcome {
    border-radius: 15px;
    padding-top: 40px;
    height: 100px;
    width: auto;
    font-size: 2.2em;
}

h1 {
    font-weight: 30;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    color: white;
    justify-content: center;
    margin-top: 10%;
    z-index: 1;
}

.neon {
    position: absolute;
    top: 5%;
    left: 30%;
    transform: translate(-50%, -50%);
    margin-right: 40%;

    padding: 0 20px;
    font-size: 6em;
    color: #fff;

    text-shadow:
        0 0 28px rgb(191, 0, 255),
        0 0 92px rgb(18, 31, 209),
        0 0 102px rgb(11, 255, 251),
        0 0 151px rgb(2, 255, 44);
}

.logo {
    width: auto;
    margin-top: 20%;
    margin-right: 20%;
    margin-left: 5%;
    padding: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
}


.vector {
    width: auto;
    margin-left: -20px;
    float: right;
    z-index: 2;
}

.vector img {
    height: 500px;
    margin-left: 1%;
    margin-top: -430px;
    align-items: center;
    object-fit: cover;
}

.eve {
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.1);
    margin-left: 100px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.testimonials {
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
    /* margin-top: 20px; */
    /* margin-left: 100px; */
    max-width: 100%;
    /* margin-right: 20px; */
    box-sizing: border-box;
    margin-top: 0%;
    padding: 40px;
    /* right: 30%; */

}

.testimonials .card {
    position: relative;
    width: 250px;
    margin: 0 auto;
    background: #080f33;
    padding: 20px;
    border-radius: 15px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;

}

.testimonials .card .layer {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#03a9f4, #e91ee3);
    z-index: 1;
    transition: 0.5s;
}

.testimonials .card:hover .layer {
    top: 0;
}

.testimonials .card .content {
    position: relative;
    z-index: 2;
}

.testimonials .card .content p {
    font-size: 18px;
    line-height: 24px;
    color: #fff;

}

.testimonials .card .content .details h2 {
    font-size: 18px;
    color: #fff;
}

.testimonials .card .content .details h2 span {
    color: #03a9f4;
    font-size: 14px;
    transition: 0.5s;
}

.testimonials .card:hover .content .details h2 span {
    color: #fff;
}


.testimonials .card .content .details h2 span a {

    text-decoration: none;
    color: #0f0;
    text-shadow: 0 0 28px rgb(255, 255, 0),
        0 0 30px rgb(255, 255, 0);

}

.testimonials .card:hover .content .details h2 span a {
    color: #000;
}

/*  ------------------Scroll Bar------------------ */
::-webkit-scrollbar {
    width: 0;

}

#scrollPath {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
}

#progressbar {
    position: fixed;
    top: 0;
    right: 0;
    width: 10px;

    background: linear-gradient(to top, #008aff, #00ffe7);
    animation: animate1 5s linear infinite;
}

@keyframes animate1 {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(360deg);
    }
}

#progressbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008aff, #00ffe7);
    filter: blur(10px);
}


#progressbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #008aff, #00ffe7);
    filter: blur(30px);
}






.box {
    position: relative;
    margin-top: 5%;
    margin-left: 35%;
    width: 500px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 20px;
}

.box::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 200%;
    background: linear-gradient(#00ccff, #d400d4);
    animation: animate 4s linear infinite;
}

.box::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: #080f33;
    border-radius: 16px;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.box h2 {

    position: relative;
    color: #fff;
    font-size: 5em;
    text-align: center;
    z-index: 10;
    text-shadow: 0 0 28px rgb(0, 200, 255),
        0 0 38px rgb(255, 0, 140),
        0 0 38px rgb(0, 229, 255);
}


.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.container a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #83eeff;
    margin: 40px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    color: #fff;
    -webkit-box-reflect: below 0px linear-gradient(transparent, #0002);
    transition: 0.5s;
    transition-delay: 0s;
}


.container a:hover {
    transition-delay: 1s;
    color: #000;
    box-shadow: 0 0 10px #83eeff,
        0 0 20px #83eeff,
        0 0 40px #83eeff,
        0 0 80px #83eeff,
        0 0 160px #83eeff;
}

.container a span {
    position: relative;
    z-index: 100;
}

.container a:nth-child(2) {
    filter: hue-rotate(80deg);

}

.container a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #83eeff;
    box-shadow: 5px -8px 0 #83eeff,
        5px 8px 0 #83eeff;

    transition: width 0.5s, left 0.5s, height 0.5s, box-shadow 0.5s;
    transition-delay: 1s, 0.5s, 0s, 0s;
}

.container a:hover::before {
    width: 60%;
    height: 100%;
    left: -2px;
    box-shadow: 5px 0 0 #83eeff,
        5px 0 0 #83eeff;

    transition-delay: 0s, 0.5s, 1s, 1s;
}


.container a::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #83eeff;
    box-shadow: -5px -8px 0 #83eeff,
        -5px 8px 0 #83eeff;

    transition: width 0.5s, left 0.5s, height 0.5s, box-shadow 0.5s;
    transition-delay: 1s, 0.5s, 0s, 0s;
}

.container a:hover::after {
    width: 60%;
    height: 100%;
    right: -2px;
    box-shadow: -5px 0 0 #83eeff,
        -5px 0 0 #83eeff;

    transition-delay: 0s, 0.5s, 1s, 1s;
}


.social {
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    margin-left: 100px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 600px;
    display: flex;
    flex-direction: row;
    padding: 30px;
    gap: 30px;
    justify-content: center;

}

.bbx {
    display: flex;
    flex-direction: column;
}


.hbx {
    font: 40px sans-serif ;
    color: #fff;
    background: radial-gradient(circle, rgba(0,0,0,0.6979166666666667) 11%, rgba(0,0,0,0.014443277310924318) 89%);

}

.mb {
    margin: 5px;
    width: 135px;
    height: 20px;
    font: 23px sans-serif;
    color: #fff;
    border-radius: 300px;
    border: 5px solid rgb(8, 156, 0);
    background-color: aquamarine;
    padding: 5px;
    text-align: center;
    text-decoration: none;
}

#sm {
    margin: 5px;
    text-align: left;
    text-indent: 20px;
    font: 23px sans-serif;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

.btnb {

    padding: 7px;
    width: 180px;
    height: 40px;



    border-radius: 300px;
    background: rgb(3, 0, 5) linear-gradient(180deg, rgba(3, 0, 90, 0.3), rgba(4, 0, 126, 0.3), rgba(8, 0, 249, 0.3), rgba(140, 0, 255, 0.3), rgba(238, 0, 255, 0.3), rgba(181, 0, 145, 0.3));
}

.btng {
    padding: 5px;
    width: 190px;
    height: 50px;
    background: rgb(103, 103, 103) conic-gradient(from 0deg, rgba(223, 0, 0, 0.4) 2.7%, rgba(214, 91, 0, 0.4) 9.1%, rgba(233, 245, 0, 0.4) 25.5%, rgba(23, 255, 17, 0.4) 45.8%, rgba(29, 255, 255, 0.4) 61.5%, rgba(5, 17, 255, 0.4) 76.4%, rgba(202, 0, 253, 0.4) 80.4%, rgba(223, 0, 0, 0.4) 100%);
    border-radius: 300px;
}

.btng:hover {
    animation: ani 3s infinite linear;
}

@keyframes ani {
    0% {
        background: conic-gradient(from 0deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    12.5% {
        background: conic-gradient(from 45deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    25% {
        background: conic-gradient(from 90deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    38.5% {
        background: conic-gradient(from 135deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    50% {
        background: conic-gradient(from 180deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    62.5% {
        background: conic-gradient(from 235deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    75% {
        background: conic-gradient(from 270deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    88.5% {
        background: conic-gradient(from 315deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }

    100% {
        background: conic-gradient(from 360deg, rgba(223, 0, 0, 1) 2.7%, rgba(214, 91, 0, 1) 9.1%, rgba(233, 245, 0, 1) 25.5%, rgba(23, 255, 17, 1) 43.8%, rgba(29, 255, 255, 1) 61.5%, rgba(5, 17, 255, 1) 76.4%, rgba(202, 0, 253, 1) 90.4%, rgba(223, 0, 0, 1) 100%);
    }
}

.footer {
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    /* width: 350px; */

    height: 400px;
    padding: 50px 100px;
    background: rgb(52, 48, 48);
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

footer .foot {
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.8);
    margin-left: 150px;
    margin-right: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 600px;
    padding: 30px;
}

footer .contain {
    /* display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between */
    /* flex-direction: row;
    margin-left: 10%; */
    /* width: 83%; */
    display: flex;
    gap: 30px;
    padding: 40px;
    justify-content: space-around;
}

.contain .aboutus,
.footercenter,
.contact {
    width: 400px;
}

footer .contain .sec {
    margin-right: 30px;

}

footer .contain .sec.aboutus {
    width: 40%;

}

footer .contain .sec.aboutus h2 {
    position: relative;
    color: white;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .contain h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #f00;
}

footer p {
    color: #999;
}

.info {
    display: flex;
}


.info h2 {
    position: relative;
    color: white;
    font-weight: 500;
    margin-bottom: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.info .infoBox div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info .infoBox div span {
    min-width: 40px;
    height: 40px;
    color: white;
    background: #18b7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}

.info .infoBox div p {
    color: white;
    font-size: small;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

.info .infoBox div a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;

}

.map {
    /* padding: 20px;
    margin-left: 50%; */
    /* position: absolute; */
    /* margin-top: 30px; */
    padding: 42px 0 0 10px;
    width: 370px;
    height: 150px;
    /* left: 700px;
    bottom: 700px; */
}

.map iframe {

    width: 100%;
    height: 100%;
}


.logo2 {
    display: flex;
    justify-content: center;
    margin-left: 0px;
}

.logo2 img {
    margin-top: 0px;
    height: 50px;

}

.footercenter .cj {
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 10;
    font-size: xx-large;
}

.footercenter .copyright {
    margin-top: 15px;
    text-align: center;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 10;
    font-size: medium;
}

.footercenter .cj strong {
    font-size: large;
}

.footercenter p {
    font-size: large;
    /* font-style: italic; */
}

.footerright .add {
    margin-top: 25px;
    color: white;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footer .copyright {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.aboutus h2,
p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.footic {
    margin-top: 20px;
    display: flex;
}

.footic li {
    list-style: none;
}

.footic li a {
    display: inline-block;
    width: 65px;
    height: 65px;
    background: #18b7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    margin-right: 10px;
}

.footic li a .ici {
    color: #fff;
    font-size: 35px;
    justify-content: center;
    align-items: center;
}


/*  Floating icon */

.action {
    position: fixed;
    bottom: 60px;
    /* left: 1830px; */
    left: 92vw;
    width: 80px;
    height: 80px;
    background: rgb(249, 192, 6);
    /* border: 5px inset; */
    /* border-color: red blue green yellow; */
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(255, 255, 255, 0.099);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.action span {
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2em;
    transition: 0.3s ease-in-out;
}

.action.active span {
    transform: rotate(360deg);
}

.action ul {
    position: absolute;
    bottom: 55px;
    margin-left: -25vw;
    background: rgb(248, 203, 203);
    min-width: 200px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
}

.action.active ul {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    bottom: 65px;
}

.action ul li {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    font-size: large;
    font-weight: 700;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: 0.3s;

}

/* .action ul li:hover {
    font-weight: 900;
} */

.action ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}

.btn {
    position:relative;
    width: 155px;
    height: 55px;
    margin:20px;
  }
  
.btn a
  {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background: rgba(255,255,255,0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom:1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    color: #fff;
    z-index: 1;
    font-size: 400;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(15px);
    
  }
  
  .btn:hover a
  {
    letter-spacing: 3px;
  }
  
  .btn a::before
  {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0.15),
    transparent);
    transform: skewX(45deg) translateX(0);
    transition: 0.5s;
  }
  
  .btn:hover a::before
  {
    transform: skewX(45deg) translateX(200%);
  }
  .btn::before
  {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width:30px;
    height:10px;
    background: #f00;
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0s;
  }
  .btn:hover::before
  {
    bottom: 0;
    height: 50%;
    width: 80%;
    border-radius: 30px;
    transition-delay: 0.5s;
  }
  
  .btn::after
  {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -5px;
    width:30px;
    height:10px;
    background: #f00;
    border-radius: 10px;
    transition: 0.5s;
    transition-delay: 0s;
  }
  .btn:hover::after
  {
    top: 0;
    height: 50%;
    width: 80%;
    border-radius: 30px;
    transition-delay: 0.5s;
  }
  
  .btn:nth-child(1)::before,
  .btn:nth-child(1)::after
  {
    background: #ff1f71;
    box-shadow: 0 0 5px #ff1f71,
    0 0 15px #ff1f71,
    0 0 30px #ff1f71,
    0 0 60px #ff1f71;
  }

.branch {
    position: relative;
    margin-left: 100px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    align-items: center;
    /* max-width: 1200px; */
}

.branch .dept {
    position: relative;

    /* margin: 30px;  */
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid(255, 255, 255, 0.5);
    border-left: 1px solid(255, 255, 255, 0.5);
    height: 40vh;
    width: 20vw;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.1);
    /* margin-right: 20px; */
    z-index: 2;
}

.branch .dept .text {
    padding: 20px;
    text-align: center;
    transform: translateY(100px);
    /* opacity: 0; */
    transition: 0.5s;

}

.branch .dept:hover .text {
    transform: translateY(0px);
    opacity: 1;
}

.branch .dept .text h2 {
    position: absolute;
    top: -80px;
    right: 30px;
    font-size: 8em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.branch .dept .text h3 {
    font-size: 1.8em;
    color: #fff;
    z-index: 1;

}

.branch .dept .text p {
    font-size: 1em;
    color: #fff;
    font-weight: 300;
}
.socll{
    display: block;
    margin-left: 0px;
    margin-right: 50px;
}
.soclm{
    display: flex;
    margin-left: 0px;
    margin-right: 50px;
}
.soclr{
    display: block;
}

.payqr{
    width: 500px;
}

.socll iframe{
    width:600px; 
    height: 550px; 
    border: 0px;
}

/* .text h2,h3,p{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
} */

/* RESPONSIVE */

@media (max-width: 1568px) {
    .navigation {
        background-color: rgba(0, 0, 0, 0);
        position: relative;
        width: 100%;
        inset: 20px 0px 20px -15px;
        /* changed inset */
        transition: 0.5s;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        backdrop-filter: blur(20px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
        /* border: 1px solid rgba(255, 255, 255, 0.5); */
        border: 0px solid rgba(255, 255, 255, 0.5);
    }
    .navigation ul{
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .navigation ul li{
        width: 0%;
    }
    .banner{
        margin-left: 0px;
        margin-top: 40px;
    }
    .eve{
        margin-left: 0px;
    }
    .branch{
        margin-left: 0px;
    }
    .social{
        margin-left: 0px;
        background-color: rgba(255, 255, 255, 0);
    }
    footer .foot{
        margin-left: 50px;
    }
    .action ul{
        margin-left: -20vw;
    }
    .payqr{
        width: 350px;
    }
}
@media (max-width: 1440px) {
    .neon{
        top: 13%;
        left: 25%;
    }
    .logo{
        margin-top: 24%;
        margin-left: -6%;
    }
    .vector img{
        margin-left: 2%;
        margin-top: -443px;
    }
    .box{
        margin-left: 30%;
    }
    .socll{
        margin-right: -1px;
    }
}
@media (max-width: 1024px) {
    section{
        padding-right: 0px;
        padding-left: 10px;
    }
    footer .foot{
        margin-left: 10px;
        margin-right: 20px;
    }
    .box{
        width: 410px;
        height: 259px;
        margin-left: 29%;
    }
    .branch .dept{
        width: 23vw;
    }
    .banner{
        margin-bottom: 0px;
        height: 470px;
    }
    .eve{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .branch{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .social{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    footer .foot{
        margin-top: 5px;
        margin-bottom: -30px;
    }
    .social{
        flex-wrap: wrap;
        height: 1220px;
    }
    .socll{
        margin-bottom: -140px;
    }
    .neon{
        font-size:80px;
        margin-right: 29%;
        top: 9%;
    }
    .box h2{
        font-size: 4em;
    }
    .logo img{
        width: 413px;
    }
    .logo{
        margin-left: -21%;
    }
    .vector img{
        margin-left: -4%;
        margin-top: -356px;
        height: 425px;
    }
}
@media ((min-width: 427px) and (max-width: 768px)) {
    body{
        background-image: url("images/downloadbg.png");
    }
    .navigation ul{
        justify-content: space-around;
    }
    .box{
        margin-left: 22%;
    }
    .branch{
        flex-wrap: wrap;
    }
    .branch .dept{
        width: 46vw;
    }
    footer .contain{
        padding: 2px;
        gap: 0px;
    }
    .footercenter{
        margin-top: 40px;
    }
    .neon{
        font-size:62px;
        margin-right: 17%;
    }
    .logo img{
        width: 335px;
    }
    .vector img {
        margin-left: 0%;
        margin-top: -290px;
        height: 351px;
    }
    .banner{
        height: 360px;
    }
    .socll{
        margin-bottom: 0px;
    }
    .soclr{
        top: 607px;
        left: 389px;
        position: fixed;
    }
    .soclm{
        margin-left: 0px;
        margin-right: 321px;
    }
    .hbx{
        font: 31px sans-serif;
    }
    footer .foot{
        height: 645px;
    }
}
@media (max-width: 425px) {
    body{
        background-image: url("images/downloadbg.png");
    }
    .socll iframe{
        width: 353px;
    }
    .socll{
        margin-bottom: -151px;
    }
    .social{
        height: 1629px;
    }
    .soclm{
        margin-bottom: -148px;
    }
    .contain{
        flex-direction: column;
    }
    footer .foot{
        padding: 0%;
        height: 994px;
    }
    .footic{
        flex-wrap: wrap;
        width: 239px;
    }
    footer .contain .sec.aboutus {
        width: 110%;
    }
    .map{
        position: absolute;
        width: 290px;
        top: 594px;
        left: 33px;
    }
    .footercenter{
        margin-top: 100px;
    }
    .box {
        width: 339px;
        height: 230px;
        margin-left: 6%;
    }
    .box h2 {
        font-size: 3.5em;
    }
    .branch{
        flex-direction: column;
    }
    .branch .dept {
        width: 87vw;
        height: 35vh;
    }
    .contact.info{
        width: 360px;
    }
    .action{
        left: 78vw;
    }
    .payqr {
        width: 241px;
    }
    .action ul {
        margin-left: -69vw;
    }
    .vector{
        visibility: hidden;
    }
    .neon {
        font-size: 42px;
        margin-right: -39%;
        top: 11%;
        left: 38%;
    }
    .logo img {
        width: 70%;
        margin-left: 153px;
        margin-top: 30px;
    }
    .banner{
        height: 228px;
    }
    .navigation ul{
        justify-content: space-around;
    }
    .box::before{
        width: 190px;
    }
}
@media (max-width: 360px) {
    body{
        background-image: url("images/downloadbg.png");
    }
    .contact.info {
        width: 280px;
    }
    .map{
        width: 242px;
        top: 657px;
        left: 33px;
    }
    .box {
        width: 281px;
        height: 194px;
    }
    .box::before {
        width: 157px;
    }
    footer .foot {
        height: 1065px;
    }
    .testimonials {
        margin: -6px;
    }
    .action{
        width: 50px;
        height: 50px;
    }
    .footercenter {
        margin-top: 121px;
    }
}
@media only screen and (max-width: 360px){
    body{
        background-image: url("images/downloadbg.png");
    }
}
