/* Custom styles for SkyRoot International */

/* Submit button disabled state */
button[type="submit"]:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    background-color: #9CA3AF !important;
}

button[type="submit"]:disabled:hover {
    background-color: #9CA3AF !important;
    transform: none !important;
}

button[type="submit"]:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer !important;
}

/* Override Tailwind purple colors */
.bg-purple-600 {
    background-color: #6E38BD !important;
}

.hover\:bg-purple-600:hover {
    background-color: #6E38BD !important;
}

.bg-purple-900 {
    background-color: #6E38BD !important;
}
.text-purple-600    {
    color: #6E38BD !important;
}

.from-purple-900\/80 {
    --tw-gradient-from: #6E38BD !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(110, 56, 189, 0)) !important;
}

.via-purple-900\/50 {
    --tw-gradient-stops: var(--tw-gradient-from, #6E38BD), #6E38BD, var(--tw-gradient-to, rgba(110, 56, 189, 0)) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
body{
    background-color: #F5F5F5;
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}



.hero-sykeroots {
   
    background:url(../img/hero-image.jpg) no-repeat center center;
   background-position: center;
   object-fit:cover;
   
   
    
}
.none-trasform {
    transform: none !important;
}

/* Video background styles - simplified and fixed */
.hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Video loading animation */
.video-loading {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.video-loaded {
    opacity: 1;
}

/* Fallback for video loading issues */
.video-fallback {
    background: linear-gradient(135deg, #1f2937 0%, #6E38BD 50%, #1f2937 100%);
}

/* Custom button hover effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Card hover effects */
.service-card {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Form input focus effects */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Loading spinner */
.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #6E38BD;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error message styles */
.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-weight: 500;
}

.message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Field error styles */
.field-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form input error state */
input.border-red-500,
textarea.border-red-500 {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

input.border-red-500:focus,
textarea.border-red-500:focus {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Mobile menu slide-in animation from left */
.mobile-menu-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: calc(100%);
    background-color: #0000004b;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.active .mobile-menu-content {
    left: 0;
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header h2 {
    color: white;
    font-weight: 600;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-menu-nav {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(110, 56, 189, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    color: #a78bfa;
}

.mobile-menu-cta {
    background: linear-gradient(135deg, #6E38BD 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(110, 56, 189, 0.3);
}

.mobile-menu-cta:hover {
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 56, 189, 0.4);
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

/* Mobile menu slide-in animation */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Enhanced mobile menu animations */
.mobile-menu-overlay.active .mobile-menu-content {
    animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.mobile-menu-overlay:not(.active) .mobile-menu-content {
    animation: slideOutLeft 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animation for menu items */
.mobile-menu-overlay.active .mobile-menu-link {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu-overlay.active .mobile-menu-link:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-link:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile menu backdrop blur effect */
.mobile-menu-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
}

/* Prevent body scroll when mobile menu is open */
body.overflow-hidden {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Touch-friendly mobile menu interactions */
@media (max-width: 768px) {
    .mobile-menu-content {
        width: 90%;
        max-width: 320px;
    }
    
    .mobile-menu-link {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .mobile-menu-close {
        width: 44px;
        height: 44px;
    }
    
    /* Add touch feedback */
    .mobile-menu-link:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 0.15);
    }
    
    .mobile-menu-close:active {
        transform: scale(0.9) rotate(90deg);
    }
}

/* High contrast mode support for mobile menu */
@media (prefers-contrast: high) {
    .mobile-menu-content {
        background: #000;
        border-right: 2px solid #fff;
    }
    
    .mobile-menu-link {
        border: 1px solid transparent;
    }
    
    .mobile-menu-link:hover {
        border-color: #fff;
        background: #333;
    }
}

/* Reduced motion support for mobile menu */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu-overlay,
    .mobile-menu-content,
    .mobile-menu-link,
    .mobile-menu-close {
        transition: none;
        animation: none;
    }
}

/* Mobile menu button icon transition */
#mobile-menu-btn i {
    transition: all 0.3s ease;
}

/* Smooth icon rotation for mobile menu button */
#mobile-menu-btn i.fa-times {
    transform: rotate(180deg);
}

#mobile-menu-btn i.fa-bars {
    transform: rotate(0deg);
}

/* Parallax effect for hero section */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #7c3aed;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d28d9;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        color: black !important;
        background: white !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-purple-600 {
        background-color: #000 !important;
        color: #fff !important;
    }
    
    .text-purple-600 {
        color: #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
} 
/* Team Cards - Modern Design */
.team-card {
    background:#ffffff78;
    border-radius: 20px;   
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(137, 17, 167, 0.15);
}

.team-card-image {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(109, 20, 150, 0.8), rgba(157, 17, 170, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-social-link {
    color: white;
    font-size: 24px;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.team-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

.team-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: center;
}

.team-card-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.2;
}

.team-card-role {
    font-size: 16px;
    font-weight: 600;
    color: #6e38bd;
    margin-bottom: 12px;
    line-height: 1.3;
}

.team-card-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
    flex-grow: 1;
}

/* Responsive Design for Team Cards */
@media (max-width: 768px) {
    .team-card {
        flex-direction: column;
        text-align: center;
        padding: 16px;
        gap: 16px;
    }
    
    .team-card-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .team-card-content {
        text-align: center;
    }
    
    .team-card-name {
        font-size: 18px;
    }
    
    .team-card-role {
        font-size: 15px;
    }
    
    .team-card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .team-card {
        padding: 12px;
        gap: 12px;
    }
    
    .team-card-image {
        width: 80px;
        height: 80px;
    }
    
    .team-card-content {
        padding: 0;
    }
}