.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%
  );
}

/* Website Mobile overlay menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75vw;
    height: 100vh;
    background: #123;
    z-index: 9999;
    transition: left 0.3s;
    padding-top: 60px;
}

.mobile-menu.show { left: 0; }

.mobile-menu a {
    color: white !important;
    display: block;
    padding: 15px 20px;
}

@media (min-width: 992px) {
    .mobile-menu { display: none; }
}

.o-underline-accent {
    position: relative;
    display: inline-block;
}

.o-underline-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.o-accent-gradient {
    background: linear-gradient(90deg, #123 0%, #8ac 100%);
    color: white;
}

.o-dashed-border {
    border: 3px dashed #bbb;
}

/* Primary product image container */
.product-image-container {
  width: 100%;
  max-width: 500px; /* Adjust based on your layout */
  aspect-ratio: 1 / 1; /* Square container - standard for ecommerce */
  background-color: #f8f9fa; /* Light background */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* Main product image styling */
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps aspect ratio, fits within container */
  object-position: center;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

/* Alternative: If you want to fill the container completely */
.product-image-fill {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills container, may crop image */
  object-position: center;
}

/* Hover effect for interactivity */
.product-image:hover {
  transform: scale(1.05);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .product-image-container {
    max-width: 300px;
    aspect-ratio: 4 / 3; /* Slightly rectangular on mobile */
  }
}

/* Thumbnail images (if you have multiple product images) */
.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.product-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: #007bff;
}

/* Loading placeholder */
.product-image-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Primary product image container */
.product-image-container {
  width: 100%;
  max-width: 500px; /* Adjust based on your layout */
  aspect-ratio: 1 / 1; /* Square container - standard for ecommerce */
  background-color: #f8f9fa; /* Light background */
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

/* Main product image styling */
.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Keeps aspect ratio, fits within container */
  object-position: center;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

/* Alternative: If you want to fill the container completely */
.product-image-fill {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills container, may crop image */
  object-position: center;
}

/* Hover effect for interactivity */
.product-image:hover {
  transform: scale(1.05);
}

/* For mobile responsiveness */
@media (max-width: 768px) {
  .product-image-container {
    max-width: 300px;
    aspect-ratio: 4 / 3; /* Slightly rectangular on mobile */
  }
}

/* Thumbnail images (if you have multiple product images) */
.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.product-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: #007bff;
}

/* Loading placeholder */
.product-image-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* No Image Placeholder */
.product-no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* Icon for no image placeholder */
.product-no-image::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236c757d'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2.25 15.75 5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5 1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5Zm10.5-11.25h.008v.008h-.008V8.25Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 8px;
  opacity: 0.6;
}

/* Text for no image placeholder */
.product-no-image::after {
  content: "No Image Available";
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  opacity: 0.7;
}

/* Alternative version with different styling */
.product-no-image-minimal {
  width: 100%;
  height: 100%;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
}

.product-no-image-minimal::before {
  content: "📷";
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  opacity: 0.3;
}

.product-no-image-minimal::after {
  content: "Image Coming Soon";
}

/* Dark theme version */
.product-no-image-dark {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #343a40 0%, #495057 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  border: 2px dashed #6c757d;
  border-radius: 8px;
}

.product-no-image-dark::before {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23adb5bd'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m2.25 15.75 5.159-5.159a2.25 2.25 0 0 1 3.182 0l5.159 5.159m-1.5-1.5 1.409-1.409a2.25 2.25 0 0 1 3.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 0 0 1.5-1.5V6a1.5 1.5 0 0 0-1.5-1.5H3.75A1.5 1.5 0 0 0 2.25 6v12a1.5 1.5 0 0 0 1.5 1.5Zm10.5-11.25h.008v.008h-.008V8.25Zm.375 0a.375.375 0 1 1-.75 0 .375.375 0 0 1 .75 0Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 8px;
  opacity: 0.6;
}

.product-no-image-dark::after {
  content: "No Image Available";
  font-size: 13px;
  opacity: 0.8;
}

.o-hover-up {
  transition: transform 0.3s ease;
}

.o-hover-up:hover {
  transform: translateY(-10px);
}

.o-hover-left {
  transition: transform 0.3s ease;
}

.o-hover-left:hover {
  transform: translateX(-10px);
}

.o-bounce-up-down {
  animation: bounceUpDown 2s ease-in-out infinite;
}

.o-bounce-up-down:hover {
  animation-play-state: paused;
}

@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* CSS for center-starting ticker */
.o-ticker-container {
    /*
    background: #007bff;
    color: white;
    */
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.o-ticker-label {
    background: #0056b3;
    padding: 0 15px;
    font-weight: bold;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1;
}

.o-ticker-content {
    display: inline-block;
    animation: scroll-from-center 30s linear infinite 0s;
    line-height: 40px;
    font-size: 1rem;
}

/* Modified keyframes to start from center */
@keyframes scroll-from-center {
    0% {
        transform: translate3d(calc(20vw - 100px), 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.o-ticker-item {
    display: inline-block;
    margin-right: 50px;
}

/* Pause animation on hover */
.o-ticker-container:hover .o-ticker-content {
    animation-play-state: paused;
}

/* Alternative: Faster scroll */
.o-ticker-fast .o-ticker-content {
    animation-duration: 15s;
}

/* Alternative: Slower scroll */
.o-ticker-slow .o-ticker-content {
    animation-duration: 45s;
}

.o-glow-blue {
  box-shadow: 0 0 20px rgba(135, 206, 250, 0.8), 
              0 0 40px rgba(135, 206, 250, 0.6), 
              0 0 60px rgba(135, 206, 250, 0.4);
  animation: pulse-glow-blue 0.5s ease-in-out infinite alternate;
}

@keyframes pulse-glow-blue {
  from {
    box-shadow: 0 0 20px rgba(135, 206, 250, 0.8), 
                0 0 40px rgba(135, 206, 250, 0.6), 
                0 0 60px rgba(135, 206, 250, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(135, 206, 250, 1), 
                0 0 60px rgba(135, 206, 250, 0.8), 
                0 0 90px rgba(135, 206, 250, 0.6);
  }
}

.o-glow-red {
  box-shadow: 0 0 20px rgba(250, 206, 130, 0.8), 
              0 0 40px rgba(250, 206, 130, 0.6), 
              0 0 60px rgba(250, 206, 130, 0.4);
  animation: pulse-glow-red 0.25s ease-in-out infinite alternate;
}

@keyframes pulse-glow-red {
  from {
    box-shadow: 0 0 20px rgba(250, 206, 130, 0.8), 
                0 0 40px rgba(250, 206, 130, 0.6), 
                0 0 60px rgba(250, 206, 130, 0.4);
  }
  to {
    box-shadow: 0 0 30px rgba(250, 206, 130, 1), 
                0 0 60px rgba(250, 206, 130, 0.8), 
                0 0 90px rgba(250, 206, 130, 0.6);
  }
}

/* MINIMAL CSS - Just copy these 2 rules */
.o-float-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.o-float-up.show {
    opacity: 1;
    transform: translateY(0);
}
