@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    /* //....... Color ........// */
    --primary-color: #ff3c78;
    --light-black: rgba(0, 0, 0, 0.89);
    --black: #000;
    --white: #fff;
    --grey: #aaa;
    --grey2: #dcdcdc;
    --blue: #133e9b;
}

/* NAVBAR START*/

.navbar {
    box-shadow: 0 5px 4px rgb(146 161 176 / 15%);
}

.navbar-brand {
    font-weight: 700;
    color: var(--black);
    font-size: 1.4rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
}

.navbar-nav li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.2rem;
}

.navbar-collapse ul a {
    text-decoration: none;
    color: var(--black);
    font-size: 18px;
    position: relative;
}

.navbar-collapse ul a:after {
    content: "";
    position: absolute;
    background: var(--blue);
    height: 3px;
    border-radius: 10px;
    width: 0;
    left: 0;
    bottom: 5px;
    transition: 0.3s;
}

.navbar-collapse ul li a:hover:after {
    width: 100%;
}

.navbar-collapse ul li .active:after {
    width: 100%;
}


/* NAVBAR END*/

/* Slider START */


.carousel {
    display: flex;
    align-items: center;
    background-image: url(../images/pattern-9.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.slider_contant {
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.slider_contant h1 {
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1.5px;
}

.slider_contant p {
    color: var(--light-black);
    font-size: 22px;
}

.slider_image {
    text-align: center;
}

.slider_contant img {
    height: 300px;
    margin: 20px 0;
    transition: 0.2s;
    animation: slid_img 15s infinite linear;
}

@keyframes slid_img {
    50% {
        transform: rotate(10deg);
    }
}

/* Slider BTN START */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 13rem;
    height: 3rem;
    background-size: 300% 300%;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121), linear-gradient(137.48deg, #0044ff 10%, #ff3c78 45%, #000000e3 67%, #0044ff 87%);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

#container-stars {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: 0.5s;
    backdrop-filter: blur(1rem);
    border-radius: 5rem;
}

a {
    z-index: 2;
    font-size: 15px;
    font-weight: 500;
    color: #FFFFFF;
    text-shadow: 0 0 4px white;
    text-decoration: none;
}

#glow {
    position: absolute;
    display: flex;
    width: 12rem;
}

.circle {
    width: 100%;
    height: 30px;
    filter: blur(2rem);
    animation: pulse_3011 4s infinite;
    z-index: -1;
}

.circle:nth-of-type(1) {
    background: rgba(254, 83, 186, 0.636);
}

.circle:nth-of-type(2) {
    background: rgba(142, 81, 234, 0.704);
}

.btn:hover #container-stars {
    z-index: 1;
    background-color: #212121;
}

.btn:hover {
    transform: scale(1.1)
}

.btn:active {
    border: double 4px var(--blue);
    background-origin: border-box;
    background-clip: content-box, border-box;
    animation: none;
}

.btn:active .circle {
    background: var(--blue);
}

#stars {
    position: relative;
    background: transparent;
    width: 200rem;
    height: 200rem;
}

#stars::after {
    content: "";
    position: absolute;
    top: -10rem;
    left: -100rem;
    width: 100%;
    height: 100%;
    animation: animStarRotate 90s linear infinite;
}

#stars::after {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
}

#stars::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 170%;
    height: 500%;
    animation: animStar 60s linear infinite;
}

#stars::before {
    background-image: radial-gradient(#ffffff 1px, transparent 1%);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes animStar {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-135rem);
    }
}

@keyframes animStarRotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}

@keyframes gradient_301 {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse_3011 {
    0% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.75);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Slider BTN END */
/* Slider END */

/* CARD SLIDER START */
.card_slider {
    background-color: #f2f2f2;
}

.card_slider .heading_block {
    text-align: center;
    padding: 60px 0 10px 0;
}

.card_slider .heading_block h1 {
    font-weight: 600;
    font-size: 3rem;
}

.card_slider .heading_block p {
    font-size: 20px;
}


.first_slid {
    margin: 0 30px;
    overflow: hidden;
    height: 155px;
}

.cards .image-box img {
    width: 65px;
    transition: 0.5s;
}

.image-box {
    display: flex;
    justify-content: center;
}

.text-box {
    display: flex;
    justify-content: center;
    text-align: center;
}

.text-box h4 {
    font-size: 1.2rem;
    transition: 0.5s;
}

.cards:hover .image-box img {
    width: 75px;
}

.cards:hover .text-box h4 {
    color: crimson;
}

.swiper-navBtn {
    color: #000;
    height: 40px;
    width: 40px;
    background: transparent;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background-color: #000;
}

/* CARD SLIDER END */

/* CARD SLIDER 2 START */

.second_slid {
    margin: 0 50px;
    overflow: hidden;
}

.second_slid .card-title {
    color: var(--blue);
}

.image_section {
    overflow: hidden;
    text-align: center;
    padding: 10px;
}

.image_section img {
    transition: 0.3s;
    width: 250px;
    height: 250px;
}

.card:hover .image_section img {
    transform: scale(1.1);
}

.underline {
    position: relative;
}

.underline:before {
    height: 2px;
    width: 70px;
    position: absolute;
    border-radius: 30px;
    text-align: left;
    content: '';
    background: var(--blue);
    bottom: -5px;
}

.underline:after {
    content: '';
    position: absolute;
    left: 0;
    height: 10px;
    width: 10px;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-name: MOVE-BG;
    background: var(--blue);
    bottom: -9px;
    border-radius: 50%;
}

.underline2 {
    position: relative;
}

.underline2:before {
    height: 2px;
    width: 70px;
    position: absolute;
    border-radius: 30px;
    text-align: left;
    content: '';
    background: var(--grey);
    bottom: -5px;
}

.underline2:after {
    content: '';
    position: absolute;
    left: 0;
    height: 10px;
    width: 10px;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-name: MOVE-BG;
    background: var(--grey);
    bottom: -9px;
    border-radius: 50%;
}

@keyframes MOVE-BG {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(65px);
    }
}


/* CARD SLIDER 2 END */
/* CARD  2 Start */
.backgrount_img {
    overflow: hidden;
    background-color: #f2f2f2;
    position: relative;
}

.backgrount_img .backgrond_animation {
    position: absolute;
    width: 100%;
    animation: Rotete 60s infinite linear;
}

@keyframes Rotete {
    to {
        transform: rotate(360deg);
    }
}


.ani-card {
    height: 265px;
    transition: all 0.2s;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    margin: 10px;
    border: 2px solid #0000002d;
}

.ani-card-inner {
    width: inherit;
    height: inherit;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.ani-card:hover {
    transform: scale(1.04) rotate(1deg);
}

.ani-circle {
    width: 100px;
    height: 100px;
    background: radial-gradient(#b0e633, #53ef7d);
    border-radius: 50%;
    position: absolute;
    animation: move-up6 2s ease-in infinite alternate-reverse;
}

.ani-circle:nth-child(1) {
    top: -25px;
    left: -25px;
}

.ani-circle:nth-child(2) {
    bottom: -25px;
    right: -25px;
    animation-name: move-down1;
}

.card_content h4 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card_content p {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes move-up6 {
    to {
        transform: translateY(-20px);
    }
}

@keyframes move-down1 {
    to {
        transform: translateY(20px);
    }
}

/* CARD  2 END */

/* CARD  4 END */
.serves{
    background-image: url(../images/circuit_bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.serves .overlay {
    background: #000000ca;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.serves_iner_box{
    z-index: 2;
    position: relative;
}

.page_name {
    color: var(--grey);
    font-size: 1.2rem;
    margin-bottom: 2px;
}
.serves h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--blue);
}

.serves_card{
    border: 1px dashed white;
    text-align: center;
    padding: 30px 0;
    border-radius: 5px;
    transition: 0.2s;
}

.serves_card i{
    font-size: 40px;
    margin: 5px 0;
    color: white;
    transition: 0.2s;
}

.serves_card p{
    font-weight: 600;
    margin: 5px 0;
    color: white;
    transition: 0.2s;
}

.serves_card:hover{
    background-color: white;
}

.serves_card:hover i{
    color: black;
    transform: rotateY(160deg);
}
.serves_card:hover p{
    color: black;
}
/* CARD  4 END */


/* About Row Start */


.aboutrow {
    background: linear-gradient(200deg, #b0e633, #53ef7d);
}

.about_content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about_content .about_heading {
    color: var(--grey);
    font-weight: 400;
    font-size: 1.2rem;
}

.about_content .about_para {
    color: var(--white);
    text-align: justify;
    margin: 20px 0 10px 0;
    font-weight: 300;
    font-size: 1.2rem;

}

/* About Row Enad */


/* FOOTER START */
.foter {
    background: var(--black);
}

.footer_col h4 {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-size: 18px;
}

.footer_col li {
    list-style-type: none;
}

.footer_col p {
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer_col a {
    display: block;
    text-decoration: none;
    text-shadow: none;
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 14px;
}

.footer_col a:hover {
    color: var(--blue);
}

.footer_col span {
    margin-left: 5px;
    font-size: 14px;
}

.footer_col i {
    font-size: 18px;
}



/* FOOTER END */