.o-overlay {
   background-color: rgba(0, 0, 0, 0.7);
}

.o-top-page-banner {
    background-image: linear-gradient(to right, #05a, #fff);
    background-size: stretch;
    background-repeat: no-repeat;
    background-position: top;
}

.o-btn-success-hover:hover {
    background-color: blue;
}

.o-animated {
    animation-name: oAnimated;
    animation-duration: 2s;
    position: relative;
}

.o-heading {
    font-weight: 900; font-family: arial; color: #123; 
}

@keyframes oAnimated {
    from {
        background-color: #eee;
    }

    to {
        background-color: #fff;
    }
}

.o-toggle-oo {
    animation-name: oToggleOo;
    animation-duration: 2000ms;
    animation-iteration-count: 20;
}

@keyframes oToggleOo {
    0% {
        margin-left: 0;
    }

    50% {
        margin-left: 25px;
    }

    100% {
        margin-left: 0;
    }
}

.o-blink-dark {
    animation-name: blinkDark;
    animation-duration: 250ms;
    animation-iteration-count: 20;
}

@keyframes blinkDark {
    0% {
        background: rgba(0, 0, 0, 0);
    }

    50% {
        background: rgba(255, 0, 0, 0.8);
    }

    100% {
        background: rgba(0, 0, 0, 0.0);
    }
}

.o-fade-in {
    animation-name: fadeIn;
    animation-duration: 3s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    50% {
    }

    100% {
        opacity: 1;
    }
}

.o-ltr {  
    animation:moveRight 1s linear;
}

.o-rtl {  
    animation:moveLeft 1s linear;
}

.o-ltr:hover {
animation-play-state:paused;
-webkit-animation-play-state:paused;
}

@keyframes moveLeft{
    0% {
        /*
        color: white;
        font-size: 1rem;
        */
        margin-right:-100%;
    }
    100% {
        /*
        color: white;
        margin-left:100%;
        font-size: 2rem;
        */
        margin-right:0%;
    }
}

@keyframes moveRight{
    0% {
        /*
        color: white;
        font-size: 1rem;
        */
        margin-left:-100%;
    }
    100% {
        /*
        color: white;
        margin-left:100%;
        font-size: 2rem;
        */
        margin-left:0%;
    }
}

@keyframes fade-in{
    0% {
        opacity:0%;
    }
    100% {
        opacity:100%;
    }
}

@keyframes fade-out{
    0% {
        opacity:100%;
    }
    100% {
        opacity:0%;
    }
}

@keyframes left-to-right{
    0% {
        /* left:0px; */
        margin-left:0%;
    }
    100% {
        /* left:100px; */
        margin-left:10%;
    }
}

@keyframes right-to-left{
    0% {
        margin-left:100%;
    }
    100% {
        margin-left:0%;
    }
}

.o-text-bigger {
    font-size: 1.3rem;
}

.o-pulled-up:hover {
}

@keyframes pull-up{
    0% {
        background-color: red;
    }
    100% {
        background-color: black;
    }
}

.o-darker {
    background: rgba(0, 0, 0, 0.5)
}

.o-lighter {
    background: rgba(255, 255, 255, 0.1)
}

.o-flipper:hover {
    background-color: #ddf;
}

.lineUnder:before {
  content : "";
  position: absolute;
  left    : 0;
  bottom  : 0;
  height  : 1px;
  width   : 50%;  /* or 100px */
  border-bottom:1px solid magenta;
}

.o-table-header {
    background-color: #eee;
}
.o-caret-off::before {
    display: none;
}
.o-caret-off::after {
    display: none;
}

.o-package-color {
    background-color: rgba(100, 150, 250, 1.0);
    color: white;
}

.o-package-color-text {
    color: rgba(100, 150, 250, 1.0);
}

.o-dark-shade {
    background-color: rgba(0, 0, 0, 0.1);
}

.o-light-shade {
    background-color: rgba(255, 255, 255, 0.5);
}

.o-border-radius {
    border-radius: 15px;
}

.o-border-radius-sm {
    border-radius: 8px;
}

.o-border-bottom-radius {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.o-border-top-radius {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/*
.o-linear-gradient {
    background-image: linear-gradient(135deg, #45a, #1e293b);
    color: white;
}
*/

.o-package-color-darker-text {
    color: #238;
}

.o-ola {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.o-ola::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.o-border-darker-gray {
    border: 2px solid gray !important;
}

/* Used in team */
.team-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 350px;
    margin: 0 auto;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.team-card:hover::before {
    left: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.avatar-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
}

.member-role {
    font-size: 1rem;
    color: #667eea;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #4a5568;
    margin-bottom: 0.8rem;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.02);
    text-decoration: none;
    color: #4a5568;
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: #667eea;
}

.contact-text {
    font-weight: 500;
}

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* Responsive sizing */
@media (max-width: 576px) {
    .profile-img {
        width: 130px;
        height: 130px;
        border-width: 3px;
    }
}

/* For contact us part */
.contact-icon {
    width: 50px;
    height: 50px;
}

.social-icon:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

.btn-custom {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-custom:hover {
    background: linear-gradient(45deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-1px);
}

/* Demo content styles */
.demo-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cool-bg {
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #e8fafc 15%, 
    #ffffff 30%, 
    #f1f5f9 45%, 
    #ffffff 60%, 
    #f8faec 75%, 
    #efffff 100%
  );
}
