[data-rmiz-wrap=hidden],
[data-rmiz-wrap=visible] {
  position:relative;
  display:inline-flex;
  align-items:flex-start
}
[data-rmiz-wrap=hidden] {
  visibility:hidden
}
[data-rmiz-overlay] {
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  transition-property:background-color
}
[data-rmiz-btn-close],
[data-rmiz-btn-open] {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  border:none;
  border-radius:0;
  font:inherit;
  color:inherit;
  background:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none
}
[data-rmiz-btn-open] {
  cursor:zoom-in
}
[data-rmiz-btn-close] {
  cursor:zoom-out
}
[data-rmiz-modal-content] {
  position:absolute;
  transition-property:transform;
  transform-origin:center center
}

/* ===== CUSTOM OCULA GROUP STYLES ===== */

/* Navbar Styles */
.navbar-toggler {
    padding: 0.25rem 0.5rem; /* Decrease padding to reduce size */
    border: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-size: 20px 20px;
}

.navbar-toggler.toggled {
    padding: 0.25rem 0.5rem;
    border: none;
    box-shadow: none !important;
}

/* Smooth transitions for all interactive elements */
a, button, img {
    transition: all 0.3s ease-in-out;
}

/* Subtle hover effect for navigation links */
.navbar-nav .nav-item a {
    text-decoration: none;
    position: relative;
}

.navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4f46e5;
    transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-item a:hover::after {
    width: 100%;
}

/* Gentle hover effect for service cards */
.bg-gray-800 {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.bg-gray-800:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Subtle image hover effect */
.rounded-full {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.rounded-full:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Smooth fade-in for stats */
.flex-col {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for stats */
.flex-col:nth-child(1) { animation-delay: 0.1s; }
.flex-col:nth-child(2) { animation-delay: 0.2s; }
.flex-col:nth-child(3) { animation-delay: 0.3s; }
.flex-col:nth-child(4) { animation-delay: 0.4s; }

/* Subtle hover effect for CTA buttons */
.bg-indigo-600 {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.bg-indigo-600:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1);
}

/* Gentle hover effect for LinkedIn links */
a[href*="linkedin"] {
    position: relative;
    display: inline-block;
}

a[href*="linkedin"]:hover {
    transform: translateX(4px);
}

/* Subtle background pattern animation */
.bg-white {
    position: relative;
    overflow: hidden;
}

.bg-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.03) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero section animations */
.relative.isolate {
    position: relative;
}

/* Floating animation for the hero text */
.text-5xl {
    animation: float 6s ease-in-out infinite;
}

/* Subtle movement for the pattern */
.relative.isolate svg {
    animation: patternFloat 20s ease-in-out infinite;
}

/* Subtle movement for the CTA buttons */
.mx-auto.mt-10.flex.items-center.gap-x-6 {
    animation: buttonFloat 8s ease-in-out infinite;
}

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

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, 10px) rotate(0.5deg);
    }
}

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

/* Add a subtle glow effect to the indigo text */
.text-indigo-500 {
    position: relative;
}

.text-indigo-500::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: glow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Fix tickmark icon alignment in Our Story section */
.relative.pl-9 {
    position: relative;
    padding-left: 2.25rem;
}

.relative.pl-9 dt {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.relative.pl-9 svg {
    position: static;
    margin: 0;
    flex-shrink: 0;
}

/* Contact Form Styles */
.contact-form-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.contact-form-overlay.show {
    display: flex;
}

.contact-form-modal {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .contact-form-modal {
        padding: 1.5rem;
        margin: 10px;
        max-height: 95vh;
    }
}

/* Background Image Styles */
.bg-gray-900 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

/* Hidden elements */
.hidden-element {
    display: none;
}

/* Logo opacity for partner logos */
.partner-logo {
    color: transparent;
    opacity: 0.5;
}

/* Image positioning styles */
.timeline-image {
    margin-left: 20%;
    max-width: 70%;
}

.investor-view-image {
    margin-left: 10%;
    max-width: 80%;
}

.image-background-div {
    padding-top: 100px;
    margin-bottom: 100px;
}

/* Transparent color for images */
.transparent-color {
    color: transparent;
}
