.sticky-icon {
    z-index: 100;
    position: fixed;
    top: 25%;
    right: 0%;
    width: 220px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 50px 0px 0px 50px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
    background-color: rgba(205, 164, 94, 0.3);
    /* 50% opaque black */
    color: #FFF;
}

.Youtube {
    background-color: rgba(205, 164, 94, 0.3);
    /* 50% opaque black */
    color: #FFF;
}

.Twitter {
    background-color: rgba(205, 164, 94, 0.3);
    /* 50% opaque black */
    color: #FFF;
}

.Instagram {
    background-color: rgba(205, 164, 94, 0.3);
    /* 50% opaque black */
    color: #FFF;
}

.Google {
    background-color: rgba(205, 164, 94, 0.3);
    /* 50% opaque black */
    color: #FFF;
}

.sticky-icon a i {
    background-color: transparent;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
    background-color: transparent;
    color: #FFF;
}

.sticky-icon a i.fa-whatsapp {
    background-color: transparent;
    color: #FFF;
}

.sticky-icon a i.fa-instagram {
    background-color: transparent;
    color: #FFF;
}

.sticky-icon a i.fa-youtube {
    background-color: transparent;
    color: #FFF;
}

.sticky-icon a i.fa-twitter {
    background-color: transparent;
    color: #FFF;
}

.fas fa-shopping-cart {
    background-color: #FFF;
}

#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 30px;
}

#myBtn:hover {
    background-color: #555;
}

/* STICKY LEFT */
* {
    margin: 0;
    padding: 0;
}

.sticky-social {
    z-index: 999;
    position: fixed;
    top: 40%;
    padding: 0px;
    margin-left: -10px;
    display: flex;
    flex-direction: column;
}

.sticky-social ul {
    list-style: none;
    transform: translateX(-260px);
}

.sticky-social ul li {
    display: block;
    padding: 8px;
    font-size: 21px;
    width: 300px;
    border-radius: 0px 10px 10px 0px;
    transition: all 1s;
    text-align: right;
}


.sticky-social a {
    text-decoration: none;
    color: #ffffff;
}

.sticky-social ul li i {
    font-size: 21px;
    margin-left: 18px;
    background-color: #fff;
    height: 34px;
    width: 34px;
    text-align: center;
    border-radius: 50%;
    transform: rotate(0deg);
}

.sticky-social ul li:hover i {
    transform: rotate(360deg);
    transition: all 1s;
}

.fb {
    background-color: rgba(0, 0, 139);
}

/* FADE ANIMATION */
.fadeinout {
    animation: fadeinout 2s infinite;
}

@keyframes fadeinout {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.vertical-text {
    writing-mode: vertical-rl;
    /* Or vertical-lr */
}

#typewriter-container {
    font-family: monospace;
    font-size: 2em;
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide overflowing text during typing */
}

#cursor {
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: black;
    }

    /* Or your desired cursor color */
}

.nb-bg {
    background-color: rgba(0, 0, 139, 0.7);
    /* 50% opaque black */
}

.about-title {
    color: var(--default-color);
    background: url('../images/college.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.about-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

.about-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.about-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.about-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.v-button {
    color: #222;
    border: 2px solid #444;
    background: transparent;
    padding: 14px 60px;
    transition: 0.4s;
    border-radius: 50px;

}

.facilities-bg {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/college.jpg');
    background-size: cover;
    /* Optional: Adjusts image size to cover the element */
    background-position: center;
    /* Optional: Centers the background image */
    background-repeat: no-repeat;
    /* Optional: Prevents image repetition */
}

.text-blue {
    color: rgb(0, 0, 139);
}

.v-image {
    height: 250px;
    width: 400px;
}

.modal.bottom-right .modal-dialog {
    position: fixed;
    bottom: 20px;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    margin: 0;
    /* Remove default margin */
    transform: none;
    /* Remove default transform */
}

/* Optional: Adjust modal width */
.modal.bottom-right .modal-dialog .modal-content {
    width: 350px;
    /* Adjust as needed */
}