@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
    --primary: #ff1b82;
    --secondary: #f4eff0;
    --ternary: #1327ff;
    --light: #f7f26c;
    --dark: #f50414;
    --track: rgb(111, 111, 139)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scrollbar Css */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--track);
}

::-webkit-scrollbar-thumb {
    background: var(--light);
    border-radius: 25px;
}



/* Preloader Css */

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 99999;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
}

.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Preloader Css Ends */

body {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(./assets/images/background.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 1.4rem;
    transition: background-color 0.3s, color 0.3s, background-image 0.3s;
}

html {
    font-size: 62.5%;
}

body,
html {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    scroll-behavior: smooth;
}

#progress-bar {
    --progress: 0;
    position: fixed;
    height: 8px;
    width: var(--progress);
    background: linear-gradient(45deg, rgb(68, 49, 161), rgb(36, 15, 141));
    z-index: 1000;
    border-radius: 4px;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(9, 5, 40);
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(46, 151, 192, 0.8));
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    box-shadow: 0 20px 16px 0 rgba(0, 0, 0, 0.37);
}

.navbar a {
    text-decoration: none;
    font-size: 1.3vw;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    color: var(--secondary);
    transition: 0.3s ease-in-out;
}

.image-logo {
    float: left;
    align-items: center;
    display: flex;
}

.nav-link:hover {
    color: #1e90ff;
    border-top: 2px solid #1e90ff;
    border-bottom: 2px solid #1e90ff;
    transition: all 0.3s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
}

.nav-menu {
    gap: 1rem;
    display: flex;
    margin-left: auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

#active1 {
    color: #87ceeb;
    border-top-color: #87ceeb;
    border-bottom-color: #87ceeb;
    transition: all 0.3s ease-in-out;
}

.logo {
    font-size: 2.3rem;
    font-weight: 700;
    margin-left: -10px;
    font-family: Ubuntu;
    color: #ffffff;
    transition: color 0.3s ease-in-out;
}

.logo:hover {
    color: #87ceeb;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--secondary);
}




/* Components Section Css */

section {
    scroll-margin-top: 50px;
    z-index: 100;
}

.comp-section {
    height: 85vh;
    color: var(--secondary);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 4;
}

.comp-section .compcontainer .logo img {
    width: clamp(150px, 25vw, 230px);
}

.comp-section .compcontainer h1,
.comp-section .compcontainer h3 {
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 200;
}

.comp-section .compcontainer h1 {
    font-size: clamp(4rem, 4vw, 6rem);
    font-family: Ubuntu;
    text-shadow: 2px 2px 10px var(--light);
    margin-top: 16px;
}

.comp-section .compcontainer h3 {
    font-family: 'Poppins', sans-serif;
    color: rgb(244 239 240);
    margin: 25px 10px 20px;
    font-weight: 600;
    font-size: clamp(2rem, 2vw, 3rem);
}

.comp-section .compcontainer a {
    margin-top: 50px;
}

.comp-section .compcontainer .started {
    font-size: clamp(0.5rem, 5vw, 2rem);
    font-weight: 700;
    margin-top: clamp(10px, 5vw + 10px, 30px);
    padding: 15px 50px;
    border: none;
    outline: none;
    color: white;
    position: relative;
    z-index: 0;
    border-radius: 25px;
    transition: 0.5s ease-in-out;
    background: #ffffff;
    box-shadow: 0 0 0 4px transparent;
}

.comp-section .compcontainer .started::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(45deg, #FF0000, #FF7300, #00FFD5, #FF00C8, #FF0000);
    background-size: 600%;
    z-index: -1;
    border-radius: 27px;
    opacity: 1;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.comp-section .compcontainer .started:hover {
    background: linear-gradient(45deg, #FF0000, #FF7300, #00FFD5, #FF00C8, #580d0d);
    background-size: 600%;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: glowing 20s linear infinite;
}

.comp-section .compcontainer .started:hover::before {
    filter: blur(15px);
}

.comp-section .compcontainer .started:active {
    transform: scale(0.95);
}

.paragraph {
    font-size: clamp(1.5rem, 2vw, 2rem);
    width: 90%;
    text-align: center;
    font-weight: 500;
    margin: auto;
    margin-top: 18px;
    color: rgb(244 239 240 / 91%);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
}

.container .box {
    position: relative;
    width: 320px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 30px;
    transition: 0.5s;
}


.container .box:hover:before,
.container .box:hover:after {
    transform: skewX(0deg);
    left: 20px;
    width: calc((100% - 90px));
}

.container .box .content h3 {
    font-size: 15px;
    color: #efe0f1;
    margin-top: 20px;
    transition: all 0.3s;
}

.container .box .content button {
    all: unset;
    width: 100px;
    height: 30px;
    font-size: 16px;
    background: transparent;
    border: none;
    position: relative;
    color: #f0f0f0;
    z-index: 1;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.container .box .content button::after,
.container .box .content button::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -99999;
    transition: all .4s;
}

.container .box .content button::before {
    transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    background: #28282d;
    border-radius: 10px;
}

.container .box .content button::after {
    transform: translate(10px, 10px);
    width: 35px;
    height: 35px;
    background: #ffffff15;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50px;
}

.container .box .content button:hover::before {
    transform: translate(5%, 20%);
    width: 110%;
    height: 110%;
}

.container .box .content button:hover::after {
    border-radius: 10px;
    transform: translate(0, 0);
    width: 100%;
    height: 100%;
}

.container .box .content button:active::after {
    transition: 0s;
    transform: translate(0, 5%);
}

.container .box .content img {
    float: right;
    height: 36px;
    width: 36px;
    font-weight: 900;
    margin-right: -25px;
    border-radius: 20px;
    background-color: white;
    color: #ffffff;
    transition: .5s;
    z-index: 3;
}

.container .box .content img:hover {
    color: #ffffff;
    transform: rotateY(180deg);
}


.container .box .content img:hover:before {
    top: 0;
}


.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.container .box:nth-child(even)::before,
.container .box:nth-child(even)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(odd)::before,
.container .box:nth-child(odd)::after {
    background: linear-gradient(315deg, #00ff88, #f200ff);
}

.container .box:nth-child(2)::before,
.container .box:nth-child(2)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(3)::before,
.container .box:nth-child(3)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(4)::before,
.container .box:nth-child(4)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(5)::before,
.container .box:nth-child(5)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(6)::before,
.container .box:nth-child(6)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(7)::before,
.container .box:nth-child(7)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(8)::before,
.container .box:nth-child(8)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(9)::before,
.container .box:nth-child(9)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(10)::before,
.container .box:nth-child(10)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(11)::before,
.container .box:nth-child(11)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(12)::before,
.container .box:nth-child(12)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(13)::before,
.container .box:nth-child(13)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(14)::before,
.container .box:nth-child(14)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(15)::before,
.container .box:nth-child(15)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(16)::before,
.container .box:nth-child(16)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(17)::before,
.container .box:nth-child(17)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(18)::before,
.container .box:nth-child(18)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(19)::before,
.container .box:nth-child(19)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(20)::before,
.container .box:nth-child(20)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(21)::before,
.container .box:nth-child(21)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(22)::before,
.container .box:nth-child(22)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(23)::before,
.container .box:nth-child(23)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(24)::before,
.container .box:nth-child(24)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(25)::before,
.container .box:nth-child(25)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(26)::before,
.container .box:nth-child(26)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(27)::before,
.container .box:nth-child(27)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(28)::before,
.container .box:nth-child(28)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(29)::before,
.container .box:nth-child(29)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(30)::before,
.container .box:nth-child(30)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(31)::before,
.container .box:nth-child(31)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(32)::before,
.container .box:nth-child(32)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(33)::before,
.container .box:nth-child(33)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(34)::before,
.container .box:nth-child(34)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(35)::before,
.container .box:nth-child(35)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(36)::before,
.container .box:nth-child(36)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(37)::before,
.container .box:nth-child(37)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(38)::before,
.container .box:nth-child(38)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(39)::before,
.container .box:nth-child(39)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(40)::before,
.container .box:nth-child(40)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(41)::before,
.container .box:nth-child(41)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(42)::before,
.container .box:nth-child(42)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(43)::before,
.container .box:nth-child(43)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(44)::before,
.container .box:nth-child(44)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(45)::before,
.container .box:nth-child(45)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(46)::before,
.container .box:nth-child(46)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(47)::before,
.container .box:nth-child(47)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(48)::before,
.container .box:nth-child(48)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(49)::before,
.container .box:nth-child(49)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(50)::before,
.container .box:nth-child(50)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(51)::before,
.container .box:nth-child(51)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(52)::before,
.container .box:nth-child(52)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(53)::before,
.container .box:nth-child(53)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(54)::before,
.container .box:nth-child(54)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(55)::before,
.container .box:nth-child(55)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(56)::before,
.container .box:nth-child(56)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(57)::before,
.container .box:nth-child(57)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(58)::before,
.container .box:nth-child(58)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(59)::before,
.container .box:nth-child(59)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(60)::before,
.container .box:nth-child(60)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(61)::before,
.container .box:nth-child(61)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(62)::before,
.container .box:nth-child(62)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(63)::before,
.container .box:nth-child(63)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(64)::before,
.container .box:nth-child(64)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(65)::before,
.container .box:nth-child(65)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(66)::before,
.container .box:nth-child(66)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(67)::before,
.container .box:nth-child(67)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(68)::before,
.container .box:nth-child(68)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(69)::before,
.container .box:nth-child(69)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(70)::before,
.container .box:nth-child(70)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(71)::before,
.container .box:nth-child(71)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(72)::before,
.container .box:nth-child(72)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(73)::before,
.container .box:nth-child(73)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(74)::before,
.container .box:nth-child(74)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(75)::before,
.container .box:nth-child(75)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(76)::before,
.container .box:nth-child(76)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(77)::before,
.container .box:nth-child(77)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(78)::before,
.container .box:nth-child(78)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(79)::before,
.container .box:nth-child(79)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(80)::before,
.container .box:nth-child(80)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(81)::before,
.container .box:nth-child(81)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(82)::before,
.container .box:nth-child(82)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(83)::before,
.container .box:nth-child(83)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(84)::before,
.container .box:nth-child(84)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(85)::before,
.container .box:nth-child(85)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(86)::before,
.container .box:nth-child(86)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(87)::before,
.container .box:nth-child(87)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(88)::before,
.container .box:nth-child(88)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(89)::before,
.container .box:nth-child(89)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(90)::before,
.container .box:nth-child(90)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(91)::before,
.container .box:nth-child(91)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(92)::before,
.container .box:nth-child(92)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(93)::before,
.container .box:nth-child(93)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(94)::before,
.container .box:nth-child(94)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(95)::before,
.container .box:nth-child(95)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(96)::before,
.container .box:nth-child(96)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(97)::before,
.container .box:nth-child(97)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(98)::before,
.container .box:nth-child(98)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(99)::before,
.container .box:nth-child(99)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(100)::before,
.container .box:nth-child(100)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(101)::before,
.container .box:nth-child(101)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(102)::before,
.container .box:nth-child(102)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(103)::before,
.container .box:nth-child(103)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(104)::before,
.container .box:nth-child(104)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(105)::before,
.container .box:nth-child(105)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(106)::before,
.container .box:nth-child(106)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(107)::before,
.container .box:nth-child(107)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(108)::before,
.container .box:nth-child(108)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(109)::before,
.container .box:nth-child(109)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(110)::before,
.container .box:nth-child(110)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(111)::before,
.container .box:nth-child(111)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(112)::before,
.container .box:nth-child(112)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(113)::before,
.container .box:nth-child(113)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(114)::before,
.container .box:nth-child(114)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(115)::before,
.container .box:nth-child(115)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(116)::before,
.container .box:nth-child(116)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(117)::before,
.container .box:nth-child(117)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(118)::before,
.container .box:nth-child(118)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(119)::before,
.container .box:nth-child(119)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(120)::before,
.container .box:nth-child(120)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(121)::before,
.container .box:nth-child(121)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(122)::before,
.container .box:nth-child(122)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(123)::before,
.container .box:nth-child(123)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(124)::before,
.container .box:nth-child(124)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(125)::before,
.container .box:nth-child(125)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(126)::before,
.container .box:nth-child(126)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(127)::before,
.container .box:nth-child(127)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box:nth-child(128)::before,
.container .box:nth-child(128)::after {
    background: linear-gradient(315deg, #03a9f4, #ff0058);
}

.container .box:nth-child(129)::before,
.container .box:nth-child(129)::after {
    background: linear-gradient(315deg, #03ff37, #0300ff);
}

.container .box:nth-child(130)::before,
.container .box:nth-child(130)::after {
    background: linear-gradient(315deg, #2b3427, #0a596a);
}

.container .box:nth-child(131)::before,
.container .box:nth-child(131)::after {
    background: linear-gradient(315deg, #ffbc00, #ff0058);
}

.container .box:nth-child(132)::before,
.container .box:nth-child(132)::after {
    background: linear-gradient(315deg, #1e470c, #00d0ff);
}

.container .box:nth-child(133)::before,
.container .box:nth-child(133)::after {
    background: linear-gradient(315deg, #3a3f38, #6abd1b);
}

.container .box span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    pointer-events: none;
}

.container .box span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.container .box:hover span::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
}

.container .box span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation-delay: -1s;
}

.container .box:hover span::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
}



.container .box .content {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    z-index: 1;
    transition: 0.5s;
    top: 10%;
    color: #ffffff;
}

.container .box:hover .content {
    left: -25px;
    padding: 60px 40px;
    top: 5px;
}

.container .box .content h2 {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.container .box .content p {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.4em;
}

.container .box .content a {
    display: inline-block;
    font-size: 1.1em;
    color: #f7dafb;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
}

/* Progress Bar */

#progress {
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 50px;
    width: 50px;
    z-index: 10;
    display: none;
    place-items: center;
    border-radius: 50%;
    transition: opacity 0.3s, background-color 0.3s;
    box-shadow: 4px 4px 6px 0 rgba(255, 255, 255, .3), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255, 255, 255, .2), inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

#progress-value {
    display: block;
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: black;
    background-color: #FFDEE9;
    background-image: linear-gradient(45deg, #FFDEE9 39%, #B5FFFC 100%);
}

.dark-mode #progress-value {
    background-color: #FBDA61;
    background-image: linear-gradient(45deg, #FBDA61 0%, #FF5ACD 100%);
}

/* Pagination Section Css */

#pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

#pagination-controls button {
    background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
    border: none;
    border-radius: 10px;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pagination-controls button:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.7);
    background: linear-gradient(to right, #373b44, #4286f4);
}

.dark-mode #pagination-controls button:hover {
    background: linear-gradient(to right, #8e44ad, #ff758c);
}

#pagination-controls button:active {
    transform: translateY(2px);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3), -3px -3px 5px rgba(255, 255, 255, 0.7);
}

#pagination-controls span {
    font-size: 16px;
    font-weight: bold;
    color: #555555;
}

#pagination-controls #page-info {
    color: white;
    font-size: medium;
}

/* Footer Section Css */

footer {
    font-family: 'Montserrat', sans-serif;
    background-color: rgb(9, 5, 40, 0.9);
    color: #cccccc;
    padding: 30px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1300px;
}

.company-info {
    font-weight: 600;
}

.quick-links {
    font-weight: 600;
}

.company-info,
.quick-links,
.send-message {
    flex-basis: 27%;
}

.company-name {
    font-size: 24px;
    margin-bottom: 10px;
}

.company-name img {
    width: 36px;
    width: 36px;
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 10px;
}

.company-info p {
    line-height: 1.8;
    text-align: center;
}

.quick-links h2,
.send-message h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.quick-links ul,
.send-message form {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li,
.send-message button {
    margin-bottom: 10px;
}

.quick-links a,
.send-message button {
    text-decoration: none;
    color: #cccccc;
}

.send-message input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.copyright {
    font-weight: bold;
    margin-top: 30px;
    text-align: center;
    padding: 10px 0;
    color: #cccccc;
}

.heading {
    font-size: 24px;
    margin-bottom: 20px;
    background: #00F260;
    background: -webkit-linear-gradient(to right, #0575E6, #00F260);
    background: linear-gradient(to right, #0575E6, #00F260);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 15px;
}

.group1 {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.send-message input,
.send-message textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.send-message textarea {
    height: 50px;
}

.send-message button {
    height: 50px;
    background: -webkit-linear-gradient(to right, #0575E6, #00F260);
    background: linear-gradient(to right, #0575E6, #00F260);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
}

.heading {
    text-align: center;
}

.footer-ul {
    justify-items: center;
    align-items: center;
    text-align: center;
}

.footer-ul li {
    margin: 10px 15px;
    position: relative;
}

.footer-ul li a {
    text-decoration: none;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
    position: relative;
}

.footer-ul li a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ff1b82;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-ul li a:hover {
    color: #ff1b82;
}

.footer-ul li a:hover::after {
    width: 100%;
}

.social {
    font-size: 3.5rem;
    text-decoration: none;
    margin: 0 1rem;
    transition: 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.social a i {
    transition: transform 0.3s ease-in-out;
}

/* Pop up effect */

.social a:hover i {
    transform: translateY(-8px);
}

.social a {
    color: var(--secondary);
}

.social a.user:hover {
    color: #4af3b5;
}

.social a.message:hover {
    color: #73408f;
}

.social a.linkedin:hover {
    color: #1990cb;
}

.social a.github:hover {
    color: #21d061;
}

.social a.instagram:hover {
    color: #d62976;
}

.social a.facebook:hover {
    color: #0026ff;
}

.social a.twitter:hover {
    color: #00fff7;
}

.social a.discord:hover {
    color: #5865F2;
}

/* Sticky ScrollToTop Button */

.scrollToTopContainer {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 2rem 2rem 0;
    height: fit-content;
    width: fit-content;
    z-index: 100000;
}

.scrollToTopButton {
    border-radius: 100%;
    height: 42px;
    width: 42px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 0;
    box-shadow: 0px 0px 10px 1px palevioletred;
}

.HideElement {
    display: none;
}

.trynow-button {
    transition: transform .2s;
}

.trynow-button:hover {
    transform: scale(1.15);
}

.footer-links {
    transition: transform .2s;
}

.footer-links:hover {
    transform: scale(1.1);
}

/* Search Bar Css */

#searchBar {
    text-align: center;
    border-radius: 14px;
    margin: 2rem 2rem 0;
    color: white;
    width: 100%;
}

#searchBar h1 {
    font-family: Ubuntu;
    font-size: 4rem;
    text-shadow: 2px 2px 10px var(--light);
    margin-top: 16px;
}

.search-input-container {
    margin-left: 8rem;
    align-items: center;
    display: inline;
    position: relative;
}

#searchResults_Container {
    position: absolute;
    max-height: 40rem;
    background-color: white;
    border-radius: 12px;
    z-index: 2;
    right: 0;
    margin-top: 1rem;
    left: 0;
    color: black;
    overflow: scroll;
    overflow-x: hidden;
    max-width: 60rem;
}

#searchResults_Container p {
    text-align: left;
    padding: 1rem;
    border-bottom: 0.1rem solid;
    font-size: 1.3rem;
    font-weight: 600;
}

#searchBar button {
    font-size: 2rem;
    border: 0;
    color: white;
    margin-left: 5px;
    padding: .7rem;
    width: 8rem;
    border-radius: 5rem;
    background-color: #4158D0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-image: linear-gradient(90deg, #4158D0 7%, #C850C0 47%, #FFCC70 96%);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2), -5px -5px 10px rgba(255, 255, 255, 0.6);
}

#searchBar button:hover {
    background-size: 200%;
    background-position: right;
    transform: translateY(-5px);
    animation: gradientSlide 0.8s forwards;
    background: linear-gradient(to right, #002a70, #89c6ff);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.7);
}

.dark-mode #searchBar button:hover {
    background-size: 200%;
    background-position: right;
    transform: translateY(-5px);
    animation: gradientSlide 0.8s forwards;
    background: linear-gradient(to right, #d4004a, #ff90b3);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.7);
}



#searchBar input {
    font-family: 'Poppins', sans-serif;
    border: 0;
    padding: 1rem;
    height: 4rem;
    font-size: 2rem;
    text-align: center;
    border-radius: 2rem;
    width: 40rem;
    transition: all linear .2s;
    font-weight: 600;
}

#searchBar input:hover {
    transform: scale(1.02);
    box-shadow: -5px -5px 10px #682572;
}

/* Media queries for responsiveness */

@media (max-width: 925px) {
    .social {
        font-size: 2.5rem;
        text-decoration: none;
        transition: 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-container {
        margin: 2px 3px;
    }

    .company-info,
    .quick-links,
    .send-message {
        margin-top: 8px;
        text-align: center;
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    #mySearch {
        height: 6rem;
        width: 50rem;
    }

    .footer-basic>footer>ul>li>a {
        font-size: 15px;
    }
}

@media (max-width: 500px) {
    #mySearch {
        height: 5rem;
        width: 30rem;
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        height: 100vh;
        left: -100%;
        top: 0rem;
        flex-direction: column;
        background-color: rgba(26, 9, 46, 0.9);
        width: 100%;
        border-radius: 10px;
        text-align: center;
        padding: auto;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transition: 0.5s ease-in-out;
    }

    .nav-menu.active {
        left: 0;
        height: 100vh;
        backdrop-filter: blur(7px);
        transition: 0.5s ease-in-out;
    }

    .navbar .nav-link {
        font-size: 2rem;
    }

    .nav-item {
        margin: 2.3rem 0;
    }

    nav li:hover {
        border-bottom: 0.4rem var(--secondary-color) solid;
        transition: 0.3s ease-in-out;
    }

    .theme-switch-wrapper {
        margin-right: 15px;
    }

    

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 650px) {
    #searchBar input {
        width: 100%;
        font-size: 1.5rem;
        align-items: center;
        display: flex;
    }

    #searchBar button {
        margin-top: 0.5em;
    }
}

@media (min-width:320px) and (max-width:801px) {
    #progress {
        bottom: 2px;
        height: 40px;
        width: 40px;
    }

    #progress-value {
        height: calc(100%-12px);
        width: calc(100%-12px);
        font-size: 23px;
    }

    .footer-basic .social {
        padding-bottom: 15px;
    }
}