:root {
    --them-color-main: #3b155e;
    --them-color-main2: #2f57ef;
    --them-color-second: #cf5b80;
    --them-color-third: #b966e7;
    --them-bg-one: #e6edf9;
    --them-bg-two: #ecedf2;
}

@font-face {
    font-family: "Euclid Circular";
    src: url("../fonts/Euclid-Circular-A-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular Medium";
    src: url("../fonts/Euclid-Circular-A-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular SemiBold";
    src: url("../fonts/Euclid-Circular-A-SemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Euclid Circular Bold";
    src: url("../fonts/Euclid-Circular-A-Bold.ttf") format("truetype");
}

* {
    font-family: "Euclid Circular", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

h1,
h2,
h3 {
    font-family: "Euclid Circular Bold";
}

h4,
h5,
h6 {
    font-family: "Euclid Circular SemiBold";
}

.navbar {
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.bg-transpar {
    background-color: transparent;
}

.momentLeft,
.momentRight {
    transition: all 0.3s ease;
}

.navbar .nav-link {
    position: relative;
    display: block;
    opacity: 1;
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
    color: var(--them-color-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Euclid Circular Medium";
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--them-color-second);
}

nav.navbar {
    transition: margin-top 0.5s ease, background-color 0.5s ease,
        box-shadow 0.5s ease;
    background: transparent;
}

.custom-dropdown .nav-link {
    position: relative;
}

.custom-dropdown .nav-link::after {
    content: "\f282";
    font-family: bootstrap-icons !important;
    font-size: 10px;
    font-weight: bold;
    margin-left: 8px;
}

.wide-dropdown {
    left: 0;
    right: 0;
    padding: 18px;
    background-color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submenu-list {
    list-style-type: none;
    padding-left: 0;
}

.submenu-list li a,
.submenu-list li a.active {
    display: block;
    padding: 5px 0;
    text-decoration: none;
    position: relative;
    margin: 0 10px;
    font-size: 16px;
    transition: 0.8s all;
    padding-bottom: 5px;
    transition: width 0.8s;
    color: var(--them-color-main);
    text-wrap: auto;
}

.submenu-list li a:hover {
    color: var(--them-color-second);
}

.submenu-list li a.active {
    color: var(--them-color-second);
}

.navbar.scrolled {
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 0px;
    background-color: #fff;
}

.logo {
    width: 150px;
    height: auto;
    object-fit: contain;
}

/* Custom Hamburger Button */
.navbar-toggler.custom-toggler {
    border: none;
    background: transparent;
    outline: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: background 0.3s ease-in-out;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::before,
.navbar-toggler.custom-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease-in-out;
    left: 0;
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::before {
    transform: translateY(-8px);
}

.navbar-toggler.custom-toggler .navbar-toggler-icon::after {
    transform: translateY(8px);
}

.custom-dropdown .dropdown-menu {
    display: none;
    width: 800px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top: 2px solid var(--them-color-second);
    position: relative;
}

.custom-dropdown .dropdown-menu.mini-drop-down {
    width: 180px;
}

.custom-dropdown .dropdown-menu.single-drop-down {
    width: 300px;
}

.custom-dropdown .dropdown-menu.full-drop-down {
    width: 100%;
}

.custom-dropdown .dropdown-menu::before {
    content: "";
    position: absolute;
    background: transparent;
    width: 15px;
    height: 15px;
    top: -20px;
    left: 10px;
    border-style: solid;
    border-width: 10px;
    border-color: transparent transparent var(--them-color-second) transparent;
}

/* Show the dropdown on hover */
.custom-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub .dropdown-menu.nested-dropdown.show {
    display: block;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub ul.dropdown-menu:hover {
    display: block;
}

.dropdown-menu.wide-dropdown li.dropdown-submenu-sub ul.dropdown-menu {
    background-color: var(--them-bg-one);
    width: 250px;
    display: none;
    transition: 2s;
    margin-top: -10px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    max-height: 500px;
    overflow-y: auto;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

/* Additional mobile styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .navbar-brand img {
        width: 120px;
    }

    .navbar-collapse {
        padding: 15px;
        border-radius: 5px;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 0px 20px;
        transition: background 0.2s ease;
        text-align: left;
    }

    .navbar-expand-lg .navbar-nav {
        align-items: flex-start;
    }

    .navbar .nav-link {
        color: #ccc;
    }
}

section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

/* banner */

section#banner {
    padding-top: 150px;
    padding-bottom: 250px;
    background-image: url(../images/banner/bg-2.png);
    z-index: 1;
    background-repeat: repeat-x;
    background-position: center top;
    background-size: cover;
}

.banner-title h1 {
    font-size: 72px;
    color: #202124;
    font-weight: 500;
    margin-bottom: 25px;
    font-family: "Euclid Circular Bold";
}

span.bg-highligh {
    color: var(--them-color-second);
    font-family: inherit;
}

.starts {
    color: #ff8f3c;
    display: flex;
    gap: 5px;
    align-items: center;
}

.cust-title {
    font-size: 16px;
    font-family: "Euclid Circular Medium";
    text-transform: uppercase;
}

.customer-great {
    display: grid;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

p.title-text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
}

.login-home h3 {
    font-size: 34px;
}

.login-home {
    padding: 50px;
    position: relative;
    max-width: 490px;
    padding-left: 60px;
    z-index: 2;
    background: #ffffff;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 6px;
    float: right;
}

.login-home .form-control {
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgb(209 213 219);
    border-radius: 0;
    position: relative;
    margin-top: 30px;
    display: block;
    width: 100%;
    font-size: 18px;
}

span#togglePassword {
    position: absolute;
    right: 5px;
    bottom: 5px;
    z-index: 3;
}

.banner-right {
    display: grid;
    justify-content: space-around;
    justify-items: end;
}

img.shape-message-icon {
    position: absolute;
    left: 0;
    top: 0;
}

img.shape-youTube-icon {
    position: absolute;
    right: 0;
    top: 0;
}

img.shape-check-icon {
    position: absolute;
    left: 0;
    bottom: 0;
}

img.shape-abc-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

section#banner::before {
    content: "";
    position: absolute;
    background-image: url(../images/shape/shape-3.png);
    width: 1000px;
    height: 370px;
    top: 0;
    left: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
}

section#banner::after {
    content: "";
    position: absolute;
    background-image: url(../images/banner/banner-bg-shape-1.svg);
    height: 100%;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0px;
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.banner-icon-center i {
    font-size: 400px;
    text-align: center;
    position: relative;
    background: linear-gradient(90deg, #2f57ef, #b966e7);
    background-clip: text;
    color: transparent;
    line-height: 0;
}

.banner-icon-center {
    position: relative;
    display: grid;
    align-items: center;
}

span.big-text-mySoul {
    font-family: "My Soul", cursive;
    font-size: 160px;
    color: #fff;
    position: absolute;
    left: 35%;
    top: 15%;
}

.banner-graft {
    height: 700px;
    display: grid;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.banner-graf-box {
    height: 120px;
    width: 120px;
    background: #ffff;
    border-radius: 15px;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    margin-bottom: 10px;
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
    position: absolute;
    align-content: space-evenly;
    justify-items: center;
}

.graf-box-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.graf-box-title {
    font-family: "Euclid Circular SemiBold";
    text-transform: uppercase;
    font-size: 12px;
}

.banner-graf-box.box-top-1 {
    top: 0;
    left: 30%;
}

.banner-graf-box.box-top-2 {
    top: 0;
    right: 32%;
}

.banner-graf-box.box-left-1 {
    left: 0;
    bottom: 0;
}

.banner-graf-box.box-left-1 {
    left: 0;
    top: 30%;
}

.banner-graf-box.box-left-2 {
    left: 0;
    top: 55%;
}

.banner-graf-box.box-right-1 {
    right: 0;
    top: 30%;
}

.banner-graf-box.box-right-2 {
    right: 0;
    top: 55%;
}

.banner-graf-box.box-down-1 {
    bottom: 0;
    left: 30%;
}

.banner-graf-box.box-down-2 {
    bottom: 0;
    right: 32%;
}

.banner-graf-lines {
    position: absolute;
    border: 2px dashed;
    border-color: #919ef4;
    z-index: -1;
}

.banner-graf-lines.line-center-1 {
    width: 60px;
    height: 350px;
    border-width: 2px 2px 2px 0;
    top: 24%;
    left: 42%;
    border-radius: 0px 15px 15px 0px;
}

.banner-graf-lines.line-center-2 {
    width: 350px;
    height: 80px;
    left: 22%;
    top: 50%;
    border-width: 2px 2px 0 2px;
    border-radius: 15px 15px 0px 0px;
}

.banner-graf-lines.line-center-1::before {
    content: "";
    position: absolute;
    border-style: dashed;
    border-color: #919ef4;
    width: 40px;
    height: 47px;
    border-width: 2px 0px 0px 2px;
    top: 10%;
    left: 100%;
    border-radius: 15px 0px 0px 0px;
}

.banner-graf-lines.line-center-1::after {
    content: "";
    position: absolute;
    border-style: dashed;
    border-color: #919ef4;
    width: 40px;
    height: 50px;
    border-width: 0px 0px 2px 2px;
    bottom: 8%;
    left: 17%;
    border-radius: 0px 0px 0px 15px;
}

.banner-graf-lines.line-top-1 {
    height: 58px;
    width: 35px;
    top: 16%;
    left: 38%;
    border-width: 0px 0px 2px 2px;
    border-radius: 0px 0 0 15px;
}

.banner-graf-lines.line-top-2 {
    height: 95px;
    width: 54px;
    top: 16%;
    right: 38%;
    border-width: 0px 2px 2px 0px;
    border-radius: 0px 0 15px 0px;
}

.banner-graf-lines.line-down-1 {
    height: 86px;
    width: 43px;
    bottom: 14%;
    left: 38%;
    border-width: 2px 0px 0px 2px;
    border-radius: 10px 0px 0px 0px;
}

.banner-graf-lines.line-left-1 {
    width: 100px;
    height: 60px;
    top: 39%;
    left: 15%;
    border-radius: 0px 15px 0px 0px;
    border-width: 2px 2px 0px 0px;
}

.banner-graf-lines.line-left-2 {
    width: 56px;
    height: 40px;
    top: 59%;
    left: 15%;
    border-radius: 0px 0px 15px 0px;
    border-width: 0px 2px 2px 0px;
}

.banner-graf-lines.line-right-1 {
    width: 50px;
    height: 50px;
    top: 39%;
    right: 123px;
    border-radius: 15px 0px 0px 0px;
    border-width: 2px 0px 0px 2px;
}

.banner-graf-lines.line-right-2 {
    width: 141px;
    height: 30px;
    top: 61%;
    right: 15%;
    border-radius: 0px 0px 0px 15px;
    border-width: 0px 0px 2px 2px;
}

.banner-graf-lines.line-down-2 {
    height: 116px;
    width: 95px;
    bottom: 14%;
    right: 40%;
    border-width: 2px 2px 0px 0px;
    border-radius: 0px 15px 0px 0px;
}

.banner-graf-lines.line-center-2::before {
    content: "";
    position: absolute;
    border-style: dashed;
    border-color: #919ef4;
    width: 31px;
    height: 36px;
    border-width: 0px 0px 2px 2px;
    bottom: 100%;
    left: 12%;
    border-radius: 0px 0px 0px 15px;
}

.banner-graf-lines.line-center-2::after {
    content: "";
    position: absolute;
    border-style: dashed;
    border-color: #919ef4;
    width: 120px;
    height: 36px;
    border-width: 0px 2px 2px 0px;
    bottom: 100%;
    right: -25%;
    border-radius: 0px 0px 15px 0px;
}

.feature {
    display: inline-block;
    font-family: inherit;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.feature {
    background: linear-gradient(90deg, #2f57ef, #b966e7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(255, 255, 255, 0.001);
}

.feature.show {
    opacity: 1;
    transform: translateY(0);
}

p.banner-text {
    color: #6b7385;
    font-size: 18px;
    font-weight: 400;
}

img.shape-full-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.shape-half-circle {
    width: 200px;
    height: 550px;
    background-image: url(../images/shape/shape-2.png);
    position: absolute;
    right: 0;
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

/* what we do */

.whatWeDo-section {
    position: relative;
    z-index: 10;
    background: rgba(39, 0, 255, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    background-image: linear-gradient(218.15deg,
            rgba(185, 102, 231, 0.3882352941) 0%,
            rgba(47, 87, 239, 0.2901960784) 100%);
}

.do-card {
    z-index: 2;
    padding: 50px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1019607843);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
    height: 100%;
    transition: 0.3s;
    color: #fff;
    cursor: pointer;
}

.do-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #192335;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: -1;
    border-radius: 10px;
    transition: 0.3s;
    opacity: 0;
}

.do-card:hover {
    transform: translateY(-25px);
    border: none;
}

.do-card:hover::before {
    opacity: 1;
}

section#whatWeDo {
    padding: 0;
    transform: translateY(-10pc);
    z-index: 1;
    overflow: visible;
}

.do-icons {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.whatWeDo-title {
    font-size: 18px;
    font-family: "Euclid Circular Medium";
    margin-bottom: 10px;
}

.do-card p {
    color: rgba(255, 255, 255, 0.7019607843);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

img {
    transition: all 0.3s ease-out 0s;
}

/* Section : About US */

img.abt-1 {
    border-radius: 80px 80px 0 80px;
    width: 400px;
    height: 600px;
    object-fit: cover;
}

img.abt-2 {
    border-radius: 50%;
    border: 2px dashed var(--them-color-main);
    padding: 8px;
    height: 360px;
    width: 360px;
    object-fit: cover;
    margin: 0 auto;
}

img.abt-3 {
    border-radius: 0 80px 80px 80px;
    height: 480px;
    width: 400px;
    object-fit: cover;
}

.experience-about-sec-img {
    width: 68px;
    height: 68px;
    background: var(--them-color-main);
    mask-image: url(../images/icons/experience.png);
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: contain;
}

.about-experience-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.about-experience.mt-4 {
    background: var(--them-color-main);
    width: 100%;
    height: 240px;
    padding: 50px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 80px 80px 80px 0px;
    color: #fff;
}

span.text-start {
    font-size: 20px;
    font-family: "Euclid Circular SemiBold";
}

.section-sub-title {
    background: #2f57ef21;
    color: #2f57ef;
    border-radius: 100px;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Euclid Circular Medium";
    position: relative;
}

section h2 {
    position: relative;
    display: block;
    font-size: 44px;
    color: #192335;
    font-weight: bold;
    margin-bottom: 15px;
}

span.highlight {
    background: linear-gradient(90deg, #2f57ef, #b966e7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    color: rgba(255, 255, 255, 0.001);
    font-family: inherit;
}

section p {
    color: #6b7385;
    font-size: 16px;
    margin-bottom: 1rem;
}

p.description {
    font-size: 18px;
    position: relative;
}

.abt-media {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.abd-media-icon {
    width: 80px;
    height: 80px;
    background: var(--them-color-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 5px 0 rgb(59 21 94 / 17%);
}

.abt-media-contend {
    flex: 1 70%;
}

.media-icon-img {
    width: 50px;
    height: 50px;
    background-color: #fff;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.media-icon-img.icon-job-portal {
    mask-image: url(../images/icons/job-portal.png);
}

.media-icon-img.icon-edu-portal {
    mask-image: url(../images/icons/edu-portal.png);
}

.about-quote {
    padding: 30px;
    background: rgb(185 102 231 / 29%);
    border-radius: 20px;
    position: relative;
    color: #3b155e;
}

.about-quote p {
    color: var(--them-color-main);
}

section#whyChooseUs {
    padding-top: 100px;
}

.about-quote i {
    position: absolute;
    right: 5px;
    bottom: -20px;
    font-size: 45px;
}

.section-head {
    position: relative;
}

section#whyChooseUs .big-title,
.section-head .big-title {
    top: -38px;
}

.big-title {
    font-family: "Euclid Circular Bold";
    position: absolute;
    color: #f4f5f7;
    top: 0%;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
    font-size: 270px;
    font-weight: 700;
    line-height: 0.8em;
    background: linear-gradient(180deg,
            rgb(228, 226, 250) 0%,
            rgba(57, 78, 244, 0.03) 80%);
    background-clip: text;
    color: transparent;
}

/* Button Style */
.btn-buttons {
    display: inline-block;
    padding: 10px 30px;
    font-size: 15px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-sizing: border-box;
    color: #ffffff;
    background-size: 300% 100%;
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
}

/* Hover Effect */

.btn-buttons:hover {
    background-position: 102% 0;
    transition: all 0.4s ease-in-out;
    color: #fff;
    transform: translate3d(0, -2px, 0);
}

.btn-buttons:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.btn-buttons:active {
    transform: scale(0.98);
    /* Shrinks button slightly */
}

/* Section Video */
.video-area {
    padding: 30px;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 16px;
    background: #fff;
    position: relative;
}

a.video-btn.play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    line-height: 0;
    color: var(--them-color-second);
    border-radius: 50%;
    border: 1px solid var(--them-color-second);
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.video-thumb {
    position: relative;
}

.video-thumb::before {
    content: "";
    position: absolute;
    background: #2f57ef;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-thumb::before,
a.video-btn.play-btn {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.video-area:hover a.video-btn.play-btn {
    visibility: visible;
    opacity: 1;
}

.video-area:hover .video-thumb::before {
    visibility: visible;
    opacity: 0.25;
}

ul.video-features {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

li.vdo-feature-item {
    font-size: 16px;
    color: #6b7385;
}

li.vdo-feature-item i {
    background: #3eb75e;
    padding: 3px;
    line-height: 0;
    border-radius: 50%;
    margin-right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* choose card */

.choose-card {
    border-radius: 10px;
    padding: 40px;
    position: relative;
    z-index: 1;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    background: linear-gradient(208.29deg,
            #f5d9d5 0%,
            #f5eab4 42.92%,
            #99d9f5 100%);
    display: grid;
    align-items: center;
    justify-content: space-around;
    align-content: space-around;
    text-align: center;
    height: 600px;
    margin-top: 20px;
}

.bg-gradient-1 {
    background: linear-gradient(151.71deg, #29c986 0%, #2fc8e5 100%) !important;
}

.bg-gradient-2 {
    background: linear-gradient(151.71deg, #ff652d 0%, #ffa426 100%) !important;
}

.bg-gradient-3 {
    background: linear-gradient(151.71deg, #30c4ff 0%, #7259ff 100%) !important;
}

.choose-card-sub {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    font-family: "Euclid Circular Medium";
    font-weight: 500;
}

.choose-card-title {
    font-size: 30px;
    color: #fff;
    font-family: "Euclid Circular Bold";
    line-height: 40px;
    margin-bottom: 20px;
}

.choose-card-img img {
    height: auto;
    width: auto;
    margin: 20px auto;
    object-fit: contain;
}

.choose-tag {
    padding: 2px 12px;
    background: rgba(255, 255, 255, 0.05);
    letter-spacing: 0;
    font-weight: 400;
    color: #fff;
    margin: 5px;
    display: inline-block;
    border-radius: 5px;
}

.choose-char-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.choose-card::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-image: url(../images/icons/sun-shadow.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: auto;
}

section#course-sec {
    padding-top: 100px;
    z-index: 1;
    background-image: url(../images/shape/bg-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.education-service-tabs .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: transparent;
    padding: 20px 36px;
    display: flex;
    flex-direction: column;
    border: none;
    text-align: center;
    border-bottom: none;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    align-items: center;
    justify-content: center;
    font-family: "Euclid Circular Medium";
    font-weight: 500;
    color: #000;
}

.education-service-tabs .nav-tabs .nav-link.active {
    background: #fff;
    color: var(--them-color-main2);
}

.education-service-tabs .nav-tabs {
    align-items: center;
    justify-content: center;
    border: none;
}

.education-service-tabs .tab-body-cont {
    padding: 50px;
    background: linear-gradient(180deg, #fff 0%, rgba(250, 245, 253, 0) 100%);
    border-radius: 10px;
}

.education-service-tabs .nav-customs .nav-link {
    background: rgb(0 0 0 / 4%);
    border: 0;
    border-radius: 0.25rem;
    padding: 14px 32px;
    width: 270px;
    text-align: left;
    font-family: "Euclid Circular Medium";
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #000;
}

.education-service-tabs .nav-customs .nav-link.active {
    background: #2f57ef21;
    position: relative;
    color: var(--them-color-main2);
}

.education-service-tabs .nav-customs .nav-link.active::before {
    content: "";
    position: absolute;
    right: -20px;
    top: 30%;
    border-width: 10px;
    border-color: transparent transparent transparent #2f57ef21;
    border-style: solid;
}

li.feature-list-item {
    color: #6b7385;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
}

li.feature-list-item::before {
    content: "\f272";
    font-family: bootstrap-icons !important;
    width: 23px;
    height: 23px;
    position: relative;
    background: #2f57ef21;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2f57ef;
    border-radius: 50%;
    margin-right: 10px;
    line-height: 0;
    top: 2px;
    left: 0;
}

section.our-features {
    z-index: 1;
    background-image: url(../images/shape/left-right-line-bg.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.circle-shape {
    width: 240px;
    height: 240px;
    position: absolute;
    top: 0;
    right: -80px;
    margin: 0 auto;
    background-image: linear-gradient(90deg, #cfa2e8, #637fea);
    opacity: 0.09;
    border-radius: 100%;
    box-sizing: border-box;
}

.circle-shape::before {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 100%;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    left: 30px;
    top: 30px;
}

/* testimonial */
section#testimonial {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
    padding-bottom: 200px;
}

.section-head h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 15px;
    position: relative;
}

h3.description {
    color: #19233550;
    font-size: 34px;
    margin-bottom: 20px;
    position: relative;
}

.big-section-heading .big-title {
    font-size: 540px;
    text-align: center;
}

.testimonial-card {
    padding: 64px 112px;
    border-radius: 15px;
    background: url(../images/shape/bg-shape-3.png),
        linear-gradient(90deg, #8ea5fa 0%, #dd99ed 100%);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    color: #fff;
    z-index: 1;
}

.testimonial-card .starts {
    color: #ffc71e;
    align-items: center;
    font-size: 28px;
}

.testimonial-titles {
    font-size: 22px;
    font-family: "Euclid Circular Bold";
    color: #fff;
    font-weight: 600;
}

.testimonial-entry-date {
    font-size: 18px;
    color: #fff;
    display: list-item;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 40px;
}

.testimonial-text p {
    color: #fff;
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

marker {
    background: #2f57ef;
    padding: 2px;
    border-radius: 4px;
    white-space: nowrap;
}

img.testimonial-cart-img {
    width: 88px;
    height: 88px;
    border: 2px solid #b966e7;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

h5.testimonial-user-name {
    font-size: 22px;
    margin-bottom: 10px;
}

.user-tags {
    display: inline-flex;
    font-family: "Euclid Circular";
    font-size: 12px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.65);
    color: #3eb75e;
    align-items: center;
    justify-content: center;
    gap: 5px;
    vertical-align: middle;
}

p.testimonial-user-pos {
    color: #fff;
    font-size: 18px;
    font-style: italic;
}

.quote-top {
    position: absolute;
    font-size: 300px;
    right: 0;
    line-height: 0;
    top: -6pc;
    color: rgb(255 255 255 / 25%);
}

.testimonial-big-text {
    font-family: "Euclid Circular Bold";
    font-size: 280px;
    color: #fff;
    opacity: 0.2;
    position: absolute;
    bottom: -10pc;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-transform: capitalize;
    z-index: -1;
}

section.testimonial-top .slick-dots li.slick-active button:before {
    border-radius: 50%;
    outline: 1px #2f57ef solid;
    color: #2f57ef;
}

section.testimonial-top .slick-dots li button:hover:before {
    color: #da99ed;
}

section.testimonial-top .slick-dots {
    bottom: -40px;
}

section.testimonial-top {
    padding: 0;
    overflow: visible;
    transform: translateY(-12pc);
}

/* blogs */
.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    position: relative;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 20px;
}

.blog-card:hover {
    transform: scale(1.02);
}

img.img-blog {
    height: 250px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.blog-body {
    padding: 30px;
}

.blog-body h3 a {
    color: #000000;
    font-size: 25px;
    font-family: "Euclid Circular Bold";
    margin-bottom: 20px;
    display: block;
}

.blog-details {
    font-size: 13px;
    color: #6b7385;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    margin: 10px;
}

.blog-text {
    color: #6b7385;
    font-size: 16px;
    margin-bottom: 15px;
}

a.btn-read-more {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: "Euclid Circular SemiBold";
    gap: 5px;
    transition: 0.3s ease-in-out;
}

a.btn-read-more:hover {
    color: var(--them-color-main2);
}

a.btn-read-more span {
    font-family: "Euclid Circular SemiBold";
}

a.btn-read-more i {
    font-size: 16px;
    line-height: 0;
    transition: 0.3s ease-in-out;
}

a.btn-read-more:hover i {
    transform: translateX(10px);
}

/* footer */
footer#footer {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
}

img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.call-sec h4,
h4.footer-title {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #202124;
    font-weight: 600;
}

.call-sec a.call-footer {
    font-size: 18px;
    line-height: 28px;
    color: #1967d2;
    font-weight: 600;
}

a.mail-footer {
    color: #1967d2 !important;
    font-weight: 600;
    font-family: "Euclid Circular Medium";
}

.call-sec {
    margin-bottom: 20px;
}

footer.footer p,
footer.footer a {
    font-size: 15px;
    line-height: 30px;
    color: dimgray;
    font-weight: 400;
}

.footer-about-us {
    padding-right: 20px;
}

.footer-bottom-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

ul.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

a.social-icon:hover {
    color: var(--them-color-main);
}

ul.footer-links {
    margin-top: 20px;
}

li.footer-links-item {
    color: dimgray;
    transition: all 0.2s ease;
    font-size: 16px;
    margin-bottom: 10px;
    transform: translateX(0px);
}

li.footer-links-item::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 2px;
    background: var(--them-color-main);
    top: 50%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}

li.footer-links-item:hover {
    padding-left: 20px;
    color: var(--them-color-second);
}

li.footer-links-item:hover a {
    color: var(--them-color-second);
}

li.footer-links-item:hover::before {
    visibility: visible;
    opacity: 1;
}

footer#footer.footer-main {
    padding: 60px 0;
    background-image: url(../images/shape/three-shape.webp),
        linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
    background-position: right;
    background-size: contain;
    background-repeat: no-repeat;
}

footer.footer-bottom {
    padding: 20px 0;
}

/* about us page */
section#banner-breadcrumb {
    position: relative;
    background: linear-gradient(90deg,
            #dde6f4 0%,
            #e6eaf8 17.57%,
            #d4dcfc 34.86%,
            #e2e6f6 52.23%,
            #e0e5f8 65.17%,
            #eef4fd 97.75%);
    padding-top: 150px;
    padding-bottom: 60px;
}

.breadcrumb-shapes img {
    position: absolute;
    z-index: -1;
}

.page-tittle h1 {
    background: linear-gradient(180deg, #2f57ef, #b966e7);
    background-clip: text;
    color: #192335;
    font-size: 42px;
}

.page-title-section {
    position: relative;
    z-index: 1;
    padding: 10px 0px 10px 0px;
}

.z-index-1 {
    z-index: 1;
}

img.bread-shape-1 {
    top: -3pc;
    left: 0;
}

img.bread-shape-17 {
    bottom: -3pc;
    left: 5pc;
}

img.bread-shape-8 {
    bottom: -5pc;
    left: 0;
    right: 0;
    margin: 0 auto;
}

img.bread-shape-13 {
    top: -3pc;
    right: 25pc;
}

img.bread-shape-14 {
    top: 0;
    right: 10pc;
}

img.bread-shape-3 {
    bottom: -3pc;
    right: 0;
}

img.icon-mission {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: absolute;
    bottom: -3pc;
    right: 0;
}

img.icon-vision {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: absolute;
    bottom: -3pc;
    right: 0;
    transform: rotate(323deg);
}

.mis-vis {
    padding: 30px;
    background: rgb(213 213 213 / 29%);
    border-radius: 20px;
    position: relative;
    color: #3b155e;
}

.offer-box {
    padding: 40px 30px;
    border-radius: 5px;
    display: grid;
    align-items: center;
    justify-content: center;
    align-content: space-around;
    justify-items: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    background-color: #eff4fc;
    margin-bottom: 20px;
}

.offer-box.off-box-1 {
    background: #eaf8f6;
}

.clg-ranking-list .offer-box.off-box-1 {
    background: #6dffe9;
}

.offer-box.off-box-2 {
    background: #fff3ee;
}

.clg-ranking-list .offer-box.off-box-2 {
    background: #ffb596;
}

.offer-box.off-box-3 {
    background: #eff4fc;
}

.clg-ranking-list .offer-box.off-box-3 {
    background: #a4c7ff;
}

.offer-box.off-box-4 {
    background: #fff1f1;
}

.clg-ranking-list .offer-box.off-box-4 {
    background: #fdb8b8;
}

.offer-main-icon {
    background: #ffffff;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 6px 8px rgba(215, 216, 222, 0.41);
}

.offer-icons {
    position: relative;
    z-index: 1;
}

.off-icons {
    width: auto;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.offer-box:hover .off-icons.off-icon-1 {
    transform: translate3d(40px, -40px, 10px);
}

.offer-box:hover .off-icons.off-icon-2 {
    transform: translate3d(-60px, 0px, 10px);
}

.offer-box:hover .off-icons.off-icon-3 {
    transform: translate3d(35px, 35px, 10px);
}

h4.offer-heading {
    font-size: 20px;
    margin: 15px 0;
}

.offer-body p {
    margin-bottom: 0;
}

.offer-bg-shapes img {
    position: absolute;
}

img.off-bg-shape-1 {
    top: 0;
    right: 0;
}

img.off-bg-shape-1 {
    top: -50px;
    right: -30px;
}

img.off-bg-shape-2 {
    left: -6pc;
    top: 20%;
    animation: TopBottom 5s ease-in-out infinite;
}

@keyframes TopBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
    }
}

img.off-bg-shape-3 {
    bottom: 0pc;
    right: -5pc;
}

.card-round-frame {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid rgb(50 87 239 / 25%);
    position: relative;
    z-index: 1;
}

.card-round-frame::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    border-width: 2px;
    border-style: solid;
    border-color: #3858ee transparent #3858ee #00000000;
    z-index: -1;
    transition: all 0.3s;
    transform: rotate(45deg);
}

.team-member-card:hover .card-round-frame::before {
    transform: rotate(90deg);
}

.card-round-frame img {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    object-fit: cover;
}

.team-member-card {
    text-align: center;
}

.team-member-details h4 {
    margin: 10px 0;
}

section#team {
    z-index: 1;
    background-image: url(../images/shape/bg-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.brand-img img {
    width: 180px;
    height: 150px;
    object-fit: contain;
}

/*-----------------------*/
/* pop up form */

.modal-content.pop-up-enquiry-home {
    background-color: var(--them-bg-two);
    border-radius: 50px;
    color: #000;
    padding: 40px;
    background-image: url(../images/shape/bg-shape.png);
    background-position: inherit;
    background-size: cover;
    background-repeat: no-repeat;
}

.close-section {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--them-color-main);
    border-radius: 50%;
}

.enquiry-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    width: 50px;
    height: 50px;
}

.btn-close:focus {
    box-shadow: none;
}

img.cycle-boy-pop-up {
    position: absolute;
    width: 450px;
    top: 0;
    bottom: 0;
    right: -10pc;
    margin: auto;
}

.modal-content.pop-up-enquiry-home .form-input {
    padding: 10px 15px;
    margin-bottom: 0;
    color: #000;
    background: transparent;
    width: 100%;
}

select.form-input,
textarea.form-input {
    background: transparent;
}

p.pop-up-form-para {
    color: #ffffff;
    margin: 15px 0;
    /* background: linear-gradient(to right, #2f57ef, #b966e7, #b966e7, #2f57ef); */
    padding: 20px;
    text-align: center;
    text-shadow: 0px 0px 10px black;
    background-image: url(../images/banner/banner-bg.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pop-up-enquiry-home button.btn-buttons {
    margin: 5px 0;
}

.close-section {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--them-bg-one);
    border-radius: 50%;
}

.enquiry-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 50px;
    height: 50px;
}

.btn-close:focus {
    box-shadow: none;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

/* enquiry Banner */

img.banner-image-enquiry {
    width: 270px;
    height: 380px;
    object-fit: cover;
}

section#enquiry-card {
    padding-bottom: 0;
    padding-top: 30px;
}

section#enquiry-card::before {
    content: "";
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-image: url(../images/banner/banner-bg.jpg);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
}

.enquiry-banner {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 80px;
    color: #fff;
}

.enq-banner-img {
    flex: 1 30%;
}

.enq-banner-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    display: block;
    color: #000;
}

.btn-button {
    color: #fff;
    background-size: 300% 100%;
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
    padding: 0 25px;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    border-radius: 6px;
    border: 0 none;
    outline: none;
}

.btn-button:hover {
    background-color: inherit;
    background-position: 102% 0;
    transition: all 0.4s ease-in-out;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0px 15px 30px -2px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.enq-banner-content {
    padding-bottom: 30px;
}

.btn-button::before {
    content: "\f135";
    font-family: bootstrap-icons !important;
    line-height: 0;
    position: relative;
    top: 14%;
    left: 0;
    font-size: 25px;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    transform: translateX(-10px);
}

.btn-button::after {
    content: "\f135";
    font-family: bootstrap-icons !important;
    line-height: 0;
    position: relative;
    top: 14%;
    right: 0px;
    font-size: 25px;
    opacity: 1;
    transition: all 0.4s ease-in-out;
    display: inline-block;
}

.btn-button span {
    display: inline-block;
    transition: transform 0.6s 0.125s cubic-bezier(0.1, 0.75, 0.25, 1);
    margin-inline-start: -25px;
    transition: all 0.4s ease-in-out;
}

.btn-button:hover::before {
    opacity: 1;
    transition-delay: 0s;
    transform: translateX(0px);
}

.btn-button:hover::after {
    opacity: 0;
    transition-delay: 0s;
    transform: translateX(10px);
}

.btn-button:hover span {
    transform: translateX(23px);
}

/* directory-college */

section#show-college {
    overflow: visible;
}

input#search-college {
    box-shadow: none;
    border-radius: 20px;
    width: 100%;
    position: relative;
}

button.college-side-bar-btn {
    position: absolute;
    right: 2px;
    top: 3px;
    color: #fff;
    font-size: 20px;
    background: #cb5f7f;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.position-sticky-bar {
    position: sticky;
    top: 100px;
}

.shadows {
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
}

/*dropdown style*/
span.select2.select2-container.select2-container--default {
    display: block;
}

.select2-container--default .select2-selection--single {
    border-color: rgb(209 213 219) !important;
    height: 35px !important;
    background-color: white;
    padding-bottom: 5px;
    padding-top: 4px;
    position: relative;
}

.btn-group {
    .select {
        position: relative;
        color: inherit;

        input:checked+label {
            background-color: #4f5bf7;
            color: #fff;

            &:hover,
            &:focus,
            &:active {
                background-color: #4f5bf7;
                color: #ffffff;
            }
        }

        input {
            opacity: 0;
            position: absolute;
        }

        .button_select {
            margin: 0 10px 10px 0;
            display: flex;
            background-color: transparent;
            color: #4f5bf7;
            /*multi select*/

            &:hover,
            &:focus,
            &:active {
                background-color: transparent;
            }
        }
    }
}

.option {
    position: relative;
    color: green;

    input {
        opacity: 0;
        position: absolute;
    }

    input:checked+span {
        background-color: #4f5bf7;
        color: #fff;

        &:hover,
        &:focus,
        &:active {
            background-color: #4f5bf7;
            color: #fff;
        }
    }

    .btn-option {
        margin: 0 10px 10px 0;
        display: flex;
        background-color: transparent;
        color: #4f5bf7;

        &:hover,
        &:focus,
        &:active {
            background-color: transparent;
            color: #4f5bf7;
        }
    }
}

.sidebar-filters .btn-group {
    flex-flow: wrap;
}

.college-img {
    width: 340px;
    flex: 1 1 340px;
    max-width: 340px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    background: darkgray;
}

.college-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.college-media {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.college-item {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.college-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

h3.college.name {
    font-size: 24px;
    margin-bottom: 20px;
}

.college-media-body {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clg-details {
    color: rgb(125 125 125);
    font-size: 15px;
}

.btn-view {
    margin-top: 10px;
    display: inline-block;
    font-family: "Euclid Circular Medium";
    position: relative;
    font-size: 16px;
    padding-right: 27px;
}

.btn-view::after {
    content: "\f135";
    font-family: bootstrap-icons !important;
    font-size: 22px;
    line-height: 0;
    position: absolute;
    right: 0;
    top: 50%;
}

.btn-view::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
    transition: all 0.3s;
}

.btn-view:hover::before {
    width: 100%;
}

.btn-view:hover {
    color: transparent;
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
    background-clip: text;
}

.btn-view:hover::after {
    color: var(--them-color-main2);
}

ul.college-details-list {
    margin: 20px 0 10px 0px;
}

ul.college-details-list li {
    display: flex;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #e6e3f1;
    justify-content: space-between;
    color: #6b7385;
    flex-wrap: wrap;
}

ul.college-details-list li span.list-title {
    font-family: "Euclid Circular SemiBold";
}

ul.college-details-list li span.value-ans-right {
    font-size: 14px;
    flex: 1;
    text-align: end;
    color: #000;
}

.college-profile-thumb {
    position: relative;
    width: 100%;
    height: 100%;
}

img.clg-profile-img {
    width: 100%;
    height: 415px;
    object-fit: cover;
}

.clg-name-head {
    position: absolute;
    bottom: 10px;
    left: 5px;
    z-index: 2;
    color: #fff;
}

.clg-name-head h1 {
    color: #fff;
    font-size: 30px;
}

.college-profile-thumb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%), transparent);
    bottom: 0;
    left: 0;
}

.related-colleges-media {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e3f1;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.rld-clg-img {
    width: 100px;
    flex: 1 1 240px;
    max-width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: darkgray;
}

img.rld-college-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

h5.rld-clg-name {
    font-size: 18px;
    margin-bottom: 10px;
}

.rld-clg-location {
    color: #6b7385;
    font-size: 12px;
}

section#show-college .education-service-tabs .nav-tabs .nav-link {
    padding: 5px 15px;
    font-size: 15px;
}

section#show-college section#course-sec {
    padding-top: 60px;
}

.college-lists section#course-sec {
    max-height: 550px;
    height: 100%;
    overflow: auto;
}

.course-list-item {
    background: #fff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 4px 0px rgb(0 0 0 / 8%);
}

.course-list-item .course-name {
    font-family: "Euclid Circular SemiBold";
    font-size: 20px;
    margin-bottom: 10px;
}

.course-details {
    color: #6b7385;
    font-size: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: stretch;
}

.course-shift {
    border-right: 1px solid #6b7385;
    border-left: 1px solid #6b7385;
    padding-right: 10px;
    padding-left: 10px;
}

section#create-college {
    background-image: url(../images/banner/bg-3.png);
    background-size: auto;
    background-repeat: repeat;
    background-position: center;
}

.profile-inp {
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    height: auto;
    max-height: 570px;
}

img#display-image {
    object-fit: cover;
}

img#college-img-input {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input#display-image {
    position: absolute;
    bottom: 0;
    background: #ffffff52;
    padding: 50px;
    cursor: pointer;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

input#display-image:focus {
    outline: 0px auto -webkit-focus-ring-color;
}

/* muli select */
span.select2-selection.select2-selection--multiple {
    border-color: rgb(209 213 219) !important;
    height: 35px !important;
}

.select2-container--default .select2-selection--single {
    border-color: rgb(209 213 219) !important;
    height: 35px !important;
    background-color: white;
    padding-bottom: 5px;
    padding-top: 4px;
    position: relative;
}

span.select2.select2-container.select2-container--default {
    display: block;
}

span.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus {
    width: 100%;
    display: block;
}

span.select2.select2-container.select2-container--default.select2-container--below {
    width: 100%;
    display: block;
}

li.select2-selection__choice {
    background-color: #ffffff !important;
    border: 1px solid #4f5bf7 !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 1px solid #4f5bf7 !important;
    color: #4f5bf7 !important;
    background: #b0b4f1 !important;
}

.select2-selection__choice__display {
    color: #6e85a8;
}

.is-invalid~.invalid-feedback {
    display: none;
}

.btn-group.d-ruby {
    display: ruby;
}

.drop-container {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #d2d5db;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}

.drop-container:hover,
.drop-container.drag-active {
    background: #eee;
    border-color: #111;
}

.drop-container:hover .drop-title,
.drop-container.drag-active .drop-title {
    color: #222;
}

.drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color 0.2s ease-in-out;
}

input#company_image[type="file"] {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 5px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #555;
}

input#company_image[type="file"]::file-selector-button {
    margin-right: 20px;
    border: none;
    background: #084cdf;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

input#company_image[type="file"]::file-selector-button:hover {
    background: #0d45a5;
}

.btn-group.course-options {
    flex-flow: wrap;
}

.create-college h6 {
    padding-top: 20px;
}

.clg-study-list .offer-main-icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.education-service-tabs .degree-section {
    border-top: 1px solid #d6ddfc;
    margin-top: 20px;
    padding-top: 15px;
}

h5.degree-title {
    position: relative;
    color: var(--them-color-second);
}

.enquiry-now-form input {
    border-width: 0px 0px 1px 0px;
    border-radius: 0px;
    box-shadow: none;
}

img.overView-img {
    width: 480px;
    height: 570px;
    object-fit: cover;
}

.over-view-img-frame::before {
    transform: translate(20%, 10%);
    transition: all 2s ease;
    content: "";
    position: absolute;
    background: #e0e3fd;
    width: 480px;
    height: 570px;
    bottom: -3pc;
    right: 0px;
    z-index: -1;
    top: 0;
    left: 0;
}

.over-view-img-frame {
    transition: all 2s ease;
}

.over-view-img-frame:hover::before {
    transform: translate(0, 0) scale(1);
    top: 0;
    left: 0;
    transition: all 2s ease;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    position: relative;
    transition: all 0.5s;
}

.content-card .descriptions {
    transition: all 0.5s;
}

.content-card h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    position: relative;
    transition: max-height 0.5s ease, box-shadow 0.5s ease;
    max-height: 265px;
    overflow: hidden;
}

.content-card.active {
    max-height: 100%;
    box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
}

.content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 255, 0.1);
    clip-path: circle(0% at 0% 0%);
    transition: clip-path 0.5s ease;
    z-index: 0;
}

.content-card.active:hover::before {
    clip-path: circle(100% at 50% 50%);
}

section#key-role {
    z-index: 1;
    background-image: url(../images/shape/left-right-line-bg.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
}

.sec-grad h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.sec-grad h5 {
    margin-bottom: 20px;
}

.sec-grad {
    margin-bottom: 20px;
}

section#Importance {
    padding-top: 100px;
    z-index: 1;
    background-image: url(../images/shape/bg-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
}

.important-medias {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.important-medias:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #f1f3fd;
}

/* .imp-media-image {
    flex: 1;
} */

.imp-img {
    width: 200px;
    height: 100%;
    object-fit: cover;
}

.imp-media-body {
    flex: 2;
    padding: 20px;
}

.imp-media-body h4 {
    margin-bottom: 15px;
}

img.heading-img-icons {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 10px;
}

img.left-big-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 47%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px 15px 15px 0px;
}

img.right-big-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 47%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0px 0px 15px;
}

section.psychological-section-4 {
    padding: 0px;
    background: #ebeef6;
}

section.psychological-section-4::before {
    background-image: url(../images/ads-bg-3.png);
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
}

section.accordion-section .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: var(--them-color-second);
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    box-shadow: none;
}

img.accordion-section-img-2 {
    position: absolute;
    bottom: 0px;
    right: 0;
    padding: 10px;
    width: 350px;
    height: 450px;
    border: 10px solid #3e145d;
    border-radius: 5px;
    object-fit: cover;
}

.img-oneByTwo {
    height: 750px;
}

.abroadStudyCounseling-card {
    border-radius: 5px;
    padding: 45px 35px;
    position: relative;
    z-index: 1;
    border: 1px solid #e6e3f1;
    height: 100%;
    margin-bottom: 20px;
}

.abroadStudyCounseling-count {
    font-size: 100px;
    font-family: "Euclid Circular Bold";
    opacity: 0.05;
    display: inline-block;
    line-height: 70px;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: -1;
    transition: all 0.5s;
}

.abroadStudyCounseling-card:hover .abroadStudyCounseling-count {
    color: transparent;
    opacity: 1;
    text-shadow: 0 0 20px #fff298;
    background: radial-gradient(#ffe45de6, #ffe000);
    background-clip: text;
    height: 100%;
}

img.abroadStudyCounseling-icon {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.abroadStudyCounseling-icons {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 20px;
}

.enq-banner-content h6 {
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
    color: #000;
}

img.atom-shape {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.shape-rotate {
    animation: rotation 5s ease-in-out infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

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

img.bigDot-shape {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

img.accordion-section-img-1 {
    width: 400px;
    height: 600px;
    object-fit: cover;
    position: relative;
}

section.contact-section {
    background: linear-gradient(180deg, #eedefd 0%, #ffffff 100%) !important;
    padding-top: 200px;
}

.form-card {
    background: #fff;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    border-radius: 6px;
    position: relative;
    padding: 40px;
}

.form-card .form-control {
    border-width: 0px 0px 1px 0px;
    border-radius: 0;
    box-shadow: 0px 6px 4px 0px rgb(0 0 0 / 6%);
    font-size: 16px;
    margin-top: 20px;
}

img.contact-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a.number-for-contact {
    font-family: "Euclid Circular SemiBold";
    font-size: 40px;
    position: relative;
    background: linear-gradient(45deg, #3c58ee, #cd5b7e, #3c58ee);
    background-clip: text;
    color: transparent;
    overflow: hidden;
    display: inline-block;
}

a.number-for-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    animation: shine 2s linear infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

h2.head-small {
    font-size: 30px;
}

.page-main-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
}

.main-content .card h3 {
    font-size: 30px;
    margin-bottom: 20px;
}

ul.page-content-list {
    margin-top: 10px;
    margin-bottom: 25px;
    position: relative;
}

ul.page-content-list li {
    margin-bottom: 10px;
    font-size: 19px;
    color: #6b7385;
    position: relative;
    padding-left: 35px;
}

ul.page-content-list li::before {
    content: "\f272";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    color: var(--them-color-second);
}

ul.page-content-list li b,
.main-content .card b {
    color: #3a3a3a;
}

.main-content .card h4 {
    margin-bottom: 10px;
}

hr.my-3 {
    border-style: dashed !important;
    background: transparent;
}

.app-card {
    height: 100%;
    background: #f9f1ff;
    padding: 10px;
    border-radius: 5px;
    display: grid;
    align-items: start;
}

.role-cards {
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 35%);
    padding: 20px 30px;
    transition: all 0.5s;
    position: relative;
}

img.role-icon-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 20px;
    transition: all 0.5s;
}

.role-cards:hover {
    background: rgb(255 255 255 / 100%);
}

.role-cards:hover img.role-icon-image {
    transform: translateY(-10px);
}

img.acc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.bg-grad {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.15),
            rgba(251, 199, 226, 0.15),
            rgba(220, 217, 254, 0.15));
}

img.tech-icon-image {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 60px;
}

/* register form */

.employee-reg-form .card-body {
    padding: 50px 70px;
}

.employee-reg-form label.form-label {
    font-size: 14px;
    margin-bottom: 0.2rem;
}

ul.welcome-text li {
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

ul.welcome-text li::before {
    content: "\f272";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
    background: var(--them-color-second);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.employee-register .position-sticky-bar {
    position: sticky;
    top: 50px;
}

ul.check-text li {
    font-size: 15px;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    margin-top: 15px;
}

ul.check-text li::before {
    content: "\f272";
    font-family: bootstrap-icons !important;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 12px;
    background: var(--them-color-second);
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

/*--------------------------------*/
/*-------Blogs--------*/

section#blogs {
    padding-top: 50px;
}

.blog-card {
    margin: 20px;
    border-radius: 5px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 0%);
    cursor: pointer;
    position: relative;
    height: 500px;
}

.blogs-cards-img {
    width: 370px;
    height: 370px;
    margin: 0 auto;
    object-fit: cover;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.blogs-cards-img::after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
}

img.blog-card-img {
    width: 370px;
    height: 370px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
    transition: 0.3s;
}

.blog-card:hover .blogs-cards-img::after {
    visibility: visible;
    opacity: 1;
}

.blog-card:hover img.blog-card-img {
    transform: scale(1.2);
}

.blog-body {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 330px;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transform: translateY(-10pc);
    box-shadow: 0px 3px 6px rgb(0 0 0 / 50%);
    top: -40px;
}

h4.blog-card-tag {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #808080;
}

h3.blog-card-head {
    font-size: 24px;
    margin: 20px 0;
}

.blog-entry-date {
    font-size: 14px;
    color: #181818;
}

.date-likes i {
    color: var(--them-color-main);
}

.date-likes {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-card-text {
    color: #808080;
    font-size: 15px;
    margin-top: 10px;
}

.blog-small-circle {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    border: 15px solid var(--them-color-main);
    left: 5pc;
    top: 5pc;
    transition: transform 0.1s ease;
}

.blog-img img {
    border-radius: 15px;
}

.row.blogs-list {
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 2px dashed #6b6b84;
}

.bar-box {
    background-color: #eedefd4d;
    width: 100%;
    margin-bottom: 35px;
    padding: 25px;
    border-radius: 10px;
}

input#search-blog,
input#search-news {
    border: none;
    box-shadow: none;
    border-radius: 20px 0px 0 20px;
}

.form-search-blog-inputs,
.form-search-news-inputs {
    background: #fff;
    border-radius: 20px;
}

button.blog-side-bar-btn {
    color: var(--them-color-second);
    font-weight: bold;
}

.blog-recent-list h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 10px 0;
}

.blog-recent-list h5 {
    margin-bottom: 15px;
}

.blog-banner {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

img#mail-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.blog-main-img.blog-img-create {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px dashed #ddd;
}

input#main_image {
    position: absolute;
    bottom: 0;
    padding: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
    background: #c5c5c569;
    height: 150px;
}

.blog-create label {
    font-weight: 600;
    padding-bottom: 10px;
    display: block;
    margin-top: 5px;
}

input.form-control-file {
    background: #c8c8c824;
    display: block;
    width: 100%;
    padding: 30px;
    border: 1px dashed #ddd;
    border-radius: 30px;
}

.blog-date.blogs-date {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 75px;
    height: auto;
    float: left;
    letter-spacing: 0;
    margin: 0;
    max-width: 72px;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    color: #fff;
    background-color: var(--them-color-second);
    word-break: break-word;
}

/* blog page */
.blog-page-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
    background: #e2e6f6;
    text-align: center;
    padding: 0px;
}

.blog-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-name-details img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}

.left-name-details {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.blog-admin-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.over-view-blog p::first-letter {
    color: var(--them-color-second);
    font-size: 52px;
    font-weight: 700;
}

.over-view-blog p {
    font-size: 20px;
}

.sub-para img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    border-radius: 10px;
}

hr.dashed {
    border-style: dashed;
    background: transparent;
    border-width: 1px;
}

.countriesData .role-cards {
    border: 1px dashed #d9ebf4;
    border-radius: 10px;
}

.county-flag img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-bottom: 8px;
}

.country-box {
    position: relative;
    display: grid;
    align-items: center;
    justify-items: center;
    margin-top: 10px;
    transition: all 0.5s;
}

.county-Name {
    font-size: 12px;
    font-weight: 500;
    font-family: "Euclid Circular SemiBold";
    text-transform: uppercase;
}

.border-left-1 {
    border-left: 1px solid #dfe3fc;
}

.country-box.active,
.country-box:hover {
    background: #dee2fc;
    padding: 5px;
    border-radius: 5px;
}

.bg-bgImg {
    padding-top: 100px;
    z-index: 1;
    background-image: url(../images/shape/bg-shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.abroad-cards .table>thead {
    background: var(--them-color-second);
    color: #fff;
    font-family: "Euclid Circular Bold";
}

.nav-link.login-btn.btn-buttons {
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    border-radius: 2rem;
    outline: 1px solid #575bec;
    outline-offset: 2px;
    line-height: 20px;
}

.google-login-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

img.googleIcon {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #3367d6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 350px;
    font-size: 12px;
}

.btn-google:hover {
    transform: scale(1.02);
}

.btn-google:active {
    color: #3367d6;
}

.relatedCollage-list .card-body {
    max-height: 500px;
    overflow: auto;
    position: relative;
}

td.rank-number {
    font-size: 60px;
    font-family: "Euclid Circular Bold";
    display: inline-block;
    line-height: 50px;
    color: transparent;
    opacity: 1;
    background: radial-gradient(#b866e7, #3057ef);
    background-clip: text;
    height: 100%;
    border-right: 0;
    width: 100%;
}

td.collage-names {
    font-size: 18px;
    font-family: "Euclid Circular Bold";
    font-weight: 600;
}

thead.table-color {
    background: #dce2fa;
    border-color: #a1a1a1;
}

a.btn-nav-link {
    background: #e3e8f9;
    padding: 5px !important;
    font-weight: 600;
}

a.subject-text {
    width: 100%;
    position: relative;
    padding: 15px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    justify-items: center;
    text-align: center;
    cursor: pointer;
    background-color: #edf3fd;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: "Euclid Circular SemiBold";
    box-shadow: 0 0 10px rgb(0 0 0 / 14%);
}

.score-answer {
    font-size: 80px;
    font-family: "Euclid Circular Bold";
    display: inline-block;
}

/* entrance Exam */
.ee-box {
    background: linear-gradient(45deg, #d7ddff, transparent);
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 1px rgb(0 0 0 / 25%);
    transition: all 0.5s;
    position: relative;
}

.ee-box:hover {
    box-shadow: 0 0 20px rgb(0 0 0 / 25%);
}

.ee-icon img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}

.ee-text {
    font-family: "Euclid Circular SemiBold";
    font-size: 16px;
    flex: 1;
}

.ee-text:hover {
    color: var(--them-color-second);
}

section.entranceExam-page a:hover {
    color: var(--them-color-second);
}

.col-md-3.even-hight {
    display: flex;
    flex-direction: column;
}

.clg-ranking-list .offer-main-icon {
    background: #ffffffad;
}

ul.quick-links-list-sidebar li a {
    width: 100%;
    background: #edf3fd;
    position: relative;
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 1rem;
    color: var(--them-color-main);
    font-family: "Euclid Circular SemiBold";
    font-size: 16px;
}

ul.quick-links-list-sidebar li a:hover,
ul.quick-links-list-sidebar li a.active {
    background-color: var(--them-color-main);
    color: #fff;
}

a.source-link {
    position: relative;
    color: var(--them-color-main);
    text-decoration: underline;
}

a.source-link::after {
    content: "\f470";
    font-family: bootstrap-icons !important;
    font-size: 16px;
}

/*------------Gallery---------*/
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item::before {
    content: "";
    position: absolute;
    background: #10a1dc;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: transform 0.3s;
}

.gallery-item:hover::before {
    opacity: 0.4;
}

.gallery-item img {
    transition: transform 0.5s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item i {
    font-size: 50px;
    position: relative;
    z-index: 1;
}

.gallery-item:hover a {
    opacity: 1;
}

.galley-model .modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.galley-model .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.galley-model .modal-body img {
    max-width: 100%;
    max-height: 80vh;
    transition: transform 0.3s;
    cursor: zoom-in;
}

.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.galley-model .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1050;
}

.image_galley-upload {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #d2d5db;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}

input#image_galley,
.gallery-input {
    width: 350px;
    max-width: 100%;
    padding: 5px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #dee2e6 !important;
}

img.img-no-gallery {
    width: 100%;
    height: 400px;
    object-fit: contain;
}

img.resume-build-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.resume-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.big-title.fs-mini {
    font-size: 150px;
}

section.navbar-color {
    padding: 0;
    background: #eedefd;
    overflow: visible;
}

section.navbar-color .navbar-nav .nav-link {
    color: inherit;
}

section.navbar-color .navbar .nav-link:hover,
section.navbar-color a.nav-link.active,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--them-color-second);
}

ul.cb-links {
    margin-top: 20px;
    max-height: 400px;
    background-color: #f5f5f5;
    /* border: 1px solid #DDDDDD; */
    border-radius: 4px 0 4px 0;
    color: #3b3c3e;
    left: -1px;
    /* padding: 10px 7px 5px; */
    overflow: scroll;
    overflow-x: hidden;
    height: 400px;
}

ul.cb-links li {
    display: block;
    padding: 8px;
    border-top: 1px solid #ddd;
    position: relative;
}

ul.cb-links li::before {
    content: "\f63e";
    font-family: bootstrap-icons !important;
    margin-right: 10px;
}

button.btn.active {
    background: var(--them-color-main);
    color: #fff;
}

.profile-inp.event-img-upload {
    height: 300px;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 6px rgb(0 0 0 / 22%);
    margin-bottom: 30px;
}

img.event-img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.event-content {
    flex: 1;
}

.event-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7385;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.event-title h4 {
    font-size: 22px;
    margin-bottom: 20px;
    min-height: 100px;
}

a.see-details-btn.btn-button {
    font-size: 16px;
    padding: 0 22px;
    line-height: 40px;
    height: auto;
    box-shadow: 0px 15px 30px -2px rgba(0, 0, 0, 0.1);
    border: 2px solid #e6e3f1;
    background: #fff;
    color: var(--them-color-main2);
    border-radius: 500px;
    transition: all 0.4s;
}

a.see-details-btn.btn-button span {
    transition: all 0.4s;
    font-family: "Euclid Circular Medium";
}

a.see-details-btn.btn-button:hover {
    background-color: var(--them-color-main2);
    color: #fff;
}

a.see-details-btn.btn-button:hover span {
    color: #fff;
}

a.see-details-btn.btn-button::after,
a.see-details-btn.btn-button::before {
    top: 7px;
    transition: all 0.4s;
}

.sponsors-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sponsors-logo img {
    width: 100px;
    height: auto;
    object-fit: contain;
    margin: 5px 20px;
}

.location-map iframe {
    width: 100%;
    height: 300px;
}

.faq-accordion button.accordion-button {
    background: #fff;
    color: #000;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.faq-accordion .accordion-item {
    background-color: #fff;
    border: none;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\f4fe";
    font-family: bootstrap-icons !important;
    font-size: 18px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--them-color-second);
    transform: rotate(140deg);
}

.eventParticipants-img {
    transform: none;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    border: 6px solid #e6e3f1;
}

.eventParticipants-card {
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, 0.41);
    padding: 30px;
    margin-bottom: 20px;
}

.similarEvent .event-card {
    display: grid;
}

.similarEvent .event-card img.event-img {
    width: 100%;
}

.event-social-medias {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.e-social-icon {
    background: transparent;
    border: 2px solid #e6e3f1;
    padding: 16px;
    border-radius: 50%;
    color: #6b7385;
    width: 50px;
    height: 50px;
    display: block;
    line-height: 0;
    font-size: 16px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all 1s;
}

.e-social-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--them-color-main2);
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 1s;
    margin: 0 auto;
    right: 0;
    clip-path: circle(0%);
}

.e-social-icon:hover {
    color: #fff;
}

.e-social-icon:hover::before {
    clip-path: circle(100%);
}

.btn-apply {
    background: #fff;
    color: #0d6efd;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    border-color: #0d6efd;
    border: 1px solid;
}

.btn-applied {
    background: #fff;
    color: #5cb85c;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    border-color: #5cb85c;
    border: 1px solid;
}

.btn-apply:hover {
    background: #0d6efd;
    color: #fff;
}

.company-box-media {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.company-box-media:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.job-company-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.job-company-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-name a {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-name a:hover {
    color: #007bff;
}

.company-industry {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 10px;
}

.company-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #555555;
}

.company-info div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.company-info i {
    font-size: 1rem;
    color: var(--them-color-second);
}

.badge-jobs {
    background: #2f57ef21;
    color: #2f57ef;
    border-radius: 100px;
    padding: 4px 12px;
    display: inline-block;
    font-size: 13px;
    font-family: "Euclid Circular Medium";
    position: relative;
    margin-top: 10px;
    cursor: pointer;
}

.clg-name-head.college-title-with-logo {
    display: flex;
    gap: 10px;
    align-items: center;
}

img.collage-logo {
    height: 100px;
    width: 100px;
    object-fit: cover;
    margin-right: 10px;
}

.clg-name-head.college-title-with-logo h1 {
    flex: 1;
}

.site-bar-headings {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.page-ev-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

a.btn-edit {
    font-size: 12px;
    text-transform: uppercase;
    background: #f5f5f5;
    padding: 3px 15px;
    border: 1px solid #505050;
    border-radius: 5px;
}

section.event-show-list a.nav-link.active {
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
}

a.button-secondary {
    background: #ffbfd2;
    width: 100%;
    display: block;
    text-align: center;
    padding: 5px 20px;
    border-radius: 5px;
    font-family: "Euclid Circular SemiBold";
    color: #4c2969;
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(207 91 126) !important;
}

.collage-rank-box {
    display: grid;
    align-items: center;
    text-align: center;
    justify-content: space-around;
    justify-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 15px;
    position: relative;
}

.clg-rank-title a {
    font-family: "Euclid Circular SemiBold";
    text-transform: uppercase;
    font-size: 13px;
}

.heading-flex {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

a.text-color {
    font-size: 16px;
    color: var(--them-color-main2);
    position: relative;
    transition: all 0.5s;
}

img.tab-over-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 10px;
}

img.tab-over-img.size-300 {
    height: 300px;
}

.collage-rank-box {
    border-radius: 10px;
    box-shadow: 0px 0px 6px 0px rgb(231 229 251);
    background: radial-gradient(transparent, #e7e5fa6b);
    padding: 10px;
    transition: all 0.5s;
}

.collage-rank-box:hover {
    box-shadow: 0px 0px 11px 0px rgb(94 92 236 / 34%);
}

.detail-content-box p {
    margin-bottom: 0;
}

.detail-content-box {
    padding: 40px 30px;
    border-radius: 5px;
    display: grid;
    justify-content: center;
    align-content: space-around;
    justify-items: center;
    gap: 10px;
    cursor: pointer;
    background-color: #eff4fc;
    margin-bottom: 20px;
}

.detail-content-box.color-2 {
    background: #eaf8f6;
}

.detail-content-box.color-3 {
    background: #fff1f1;
}

.btn-views,
.btn-download,
.btn-delete {
    display: inline-block;

    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-views {
    background-color: #4c8bf5;
    color: white;
}

.btn-views::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-views:hover::before {
    transform: scaleX(1);
}

.btn-download {
    background-color: #6ab04c;
    color: white;
}

.btn-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-download:hover::before {
    transform: scaleX(1);
}

.btn-delete {
    background-color: #e84118;
    color: white;
}

.btn-delete::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-delete:hover::before {
    transform: scaleX(1);
}

.btn-views:hover,
.btn-download:hover,
.btn-delete:hover {
    background: transparent;
}

.btn-views:hover {
    color: #4c8bf5;
    background: transparent;
    box-shadow: 0 0 1px rgb(76 139 245);
}

.btn-download:hover {
    color: #6ab04c;
    background: transparent;
    box-shadow: 0 0 1px rgb(106 176 76);
}

.btn-delete:hover {
    color: #e84118;
    background: transparent;
    box-shadow: 0 0 1px rgb(232 65 24);
}

.card-resume-create {
    background: #fff;
    padding: 30px 20px 30px 20px;
    border-radius: 5px;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 5%);
}

ul.site-bar-lists {
    margin-top: 20px;
}

ul.site-bar-lists li a {
    display: block;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 2rem;
    background: #e2e7f8;
    color: #000;
    font-family: "Euclid Circular Medium";
    font-size: 16px;
    position: relative;
}

ul.site-bar-lists li a.active {
    background-size: 300% 100%;
    background-image: linear-gradient(to right,
            #2f57ef,
            #b966e7,
            #b966e7,
            #2f57ef);
    color: #fff;
}

.card-resume-create.active {
    background: #fff;
    box-shadow: 0 0 20px 0px rgb(0 0 0 / 15%);
}

.list-preview {
    background: #e2e7f8;
    margin-top: 10px;
    padding: 20px;
}

.list-preview ul {
    list-style: circle;
    padding-left: 10px;
}

.rating {
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 6px;
}

.rating input {
    display: none;
}

.rating label {
    color: #7e7e7e2b;
    cursor: pointer;
}

.rating input:checked~label {
    color: gold;
}

.resume-media {
    background: #ffffff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0px 4px -1px rgb(0 0 0 / 22%);
    position: relative;
}

.emp-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 5px;
}

.btn-delete {
    background: #fff;
    color: #ff0000;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    border-color: #ff0000;
    border: 1px solid;
    margin: 0;
}

.eye-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 999;
}

.clg-name-head.school-title-with-logo {
    display: flex;
    align-items: end;
}

.exam-box {
    position: relative;
    background: #fff;
    min-height: 400px;
    display: flex;
    align-items: end;
    padding: 40px;
    border-radius: 0.5rem;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
    margin: 20px;
}

.exam-box.tnpsc-exam {
    background-image: url(../images/tnpse-exam.jpg);
}

.exam-box.trb-exam {
    background-image: url(../images/trb-exam.jpg);
}

.exam-box.tneb-exam {
    background-image: url(../images/tneb-exam.jpg);
}

.exam-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgb(0 0 0 / 36%);
    z-index: -1;
    box-shadow: inset 0 0 20px 10px rgb(255 255 255 / 30%);
}

.exam-title {
    display: block;
    font-size: 55px;
    font-weight: 900;
    text-transform: uppercase;
    background-clip: text;
    color: transparent;
    background-image: url(../images/text-bg-2.png);
    background-size: contain;
    background-position: center;
}

.exam-btn {
    background: #ffffff;
    color: #2f57ef;
    border-radius: 100px;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 14px;
    font-family: "Euclid Circular Medium";
    position: relative;
    transition: all 0.5s;
}

.exam-btn:hover {
    background-color: #2f57ef;
    color: #fff;
}

.exam-paper-card {
    text-align: center;
    background: #000;
    padding: 20px;
    border-radius: 0.5rem;
    position: relative;
    transition: all 0.5s;
    z-index: 1;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
    display: grid;
    align-items: center;
    justify-content: center;
}

.exam-paper-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/text-bg.jpg);
    z-index: -1;
    box-shadow: inset 0 0 20px 10px rgb(255 255 255 / 30%);
    opacity: 0.5;
    background-size: cover;
    background-position: top;
    transition: all 0.5s;
}

.exam-paper-card:hover {
    box-shadow: 0 0 10px 5px rgb(166 100 232 / 36%);
    transform: translateY(-10px);
}

.exam-paper-card:hover::before {
    background-position: bottom;
}

.exam-paper-card .exam-title {
    font-size: 30px;
    background-image: url(../images/text-bg.jpg);
    margin-bottom: 10px;
}

img.img-joint-us {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 20px;
}

a.exam-registration-button {
    width: 100%;
    display: block;
    border-radius: 1rem;
}

.card-body .alert {
    position: relative;
    width: 100%;
    display: flex;
    right: auto;
    left: auto;
    top: auto;
}

.sidebar-nav {
    width: 100%;
}

ul.nav-list {
    width: 100%;
}

ul.nav-list li.link-list a {
    padding: 10px;
    background: #fff;
    border: 1px solid #e9ebfa;
    margin-bottom: 10px;
    position: relative;
    display: block;
    width: 100%;
}

ul.nav-list li.link-list.active a::before {
    content: '';
    content: "";
    position: absolute;
    right: -20px;
    top: 30%;
    border-width: 10px;
    border-color: transparent transparent transparent #2f57ef21;
    border-style: solid;
}

ul.nav-list li.link-list.active a {
    background-color: #e9ebfa;
    border: 1px solid #fff;
}

.card h4 {
    margin-bottom: 10px;
}

.card .table>thead {
    color: rgb(255, 255, 255);
    font-family: "Euclid Circular Bold";
    background: var(--them-color-second);
}

.sidebar-nav.position-sticky-bar {
    top: 120px;
}

.viewer-count-number {
    font-family: "Euclid Circular SemiBold";
    font-size: 24px;
    position: relative;
    background: linear-gradient(45deg, #3c58ee, #cd5b7e, #3c58ee);
    background-clip: text;
    color: transparent;
    overflow: hidden;
    display: inline-block;
}

.viewers-title {
    color: dimgray;
    font-size: 15px;
}

.viewer-count-box {
    border: 1px dashed #8e52e4;
    padding: 12px;
    text-align: center;
    background-color: #f7edff;
    border-radius: 20px;
    /* box-shadow: 0 0 10px #fff295; */
    margin-top: 15px;
    display: block;
}

.flip-counter {
    display: flex;
    gap: 6px;
    font-size: 14px;
    font-family: 'Euclid Circular SemiBold';
    justify-content: center;
}

.flip-digit {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 30px;
    background: #5e45e8;
    border-radius: 4px;
    align-items: center;
    justify-content: center;
    line-height: normal;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    color: #fff;
}

.viewer-count-area {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flip-digit.flip {
    transform: rotateX(360deg);
}

.exam-adv-area {
    position: relative;
}

.exam-adv-btn {
    position: absolute;
    bottom: 20%;
    right: 0;
    left: 0;
    border: 0;
    display: inline-block;
    width: 250px;
    margin: 0 auto;
    z-index: 1;
}

.question-list.question-item img.img-fluid.w-100 {
    height: 300px;
    object-fit: scale-down;
}

.exam-group-btn {
    display: block;
    padding: 10px;
    font-size: 18px;
    background-image: linear-gradient(to right, #ae2fef, #e76666, #b966e7, #a6b9ff);
    text-align: center;
    color: #fff;
    font-family: "Euclid Circular SemiBold";
    position: relative;
    cursor: pointer;
    margin-top: 20px;
}

.exam-group-btn::before {
    content: "\f122";
    font-family: bootstrap-icons !important;
    position: absolute;
    right: 10px;
}

.group-card {
    transition: all 0.7s;
}

.subscription-card {
    background: linear-gradient(135deg, #9b59b66e, #ff4181);
    color: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.subscription-card .card-header {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.subscription-card .price {
    font-size: 65px;
    font-family: "Euclid Circular Bold";
    text-align: center;
    margin: 10px 0;
    color: #fff;
}

.subscription-card .exam-groups {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #fff;
}

.subscription-card .description {
    font-size: 0.9rem;
    margin-bottom: auto;
    color: #fff;
}

.subscription-card .card-footer {
    text-align: center;
}

.btn-subscribe {
    background: white;
    color: #9b59b6;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: #fff;
    color: #e91e63;
    transform: scale(1.05);
}

.subscription-card .card-sec {
    padding: 1em 0;
}

ul.sub-card-list li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
}

ul.sub-card-list {
    margin-bottom: 20px;
}

ul.sub-card-list li i {
    color: #23ef23;
}

ul.nav-list li.link-list.subscriptions-list a {
    color: #ffffff;
    background-size: 300% 100%;
    background-image: linear-gradient(to right, #2fef7c, #66a6e7, #b966e7, #2f57ef);
}

ul.nav-list li.link-list.subscriptions-list.active a {
    background-image: linear-gradient(to right, #2f57ef, #b966e7, #b966e7, #2f57ef);
}