/* Base Styles */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
    --gray-light: #e2e8f0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #334155;
    line-height: 1.6;
}/* Global Container Padding */
.container {
    padding-left: 5%;
    padding-right: 5%;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Override Bootstrap's container if needed */
  @media (min-width: 1200px) {
    .container {
      max-width: 90%; /* Adjust as needed */
    }
  }
  
  /* Ensure full-width elements respect padding */
  body {
    overflow-x: hidden;
  }
  
  /* For edge-to-edge elements that should break out */
  .full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Dark mode styles */
.dark-mode {
    background-color: #1a202c;
    color: #f7fafc;
}

.dark-mode .bg-white {
    background-color: #2d3748 !important;
}

.dark-mode .text-gray-600 {
    color: #cbd5e0 !important;
}

.dark-mode .bg-gray-50 {
    background-color: #2d3748 !important;
}

.dark-mode .feature-card,
.dark-mode .pricing-card,
.dark-mode .testimonial-card,
.dark-mode .contact-form {
    background-color: #2d3748 !important;
    border-color: #ffffff !important;
    color: #f7fafc !important;
    border: 1px solid !important;
}

.dark-mode .form-control {
    border-color: #4a5568;
    /* color: #f7fafc; */
}

.dark-mode .process-step {
    background-color: #2d3748 !important;
    color: #f7fafc !important;
}

.dark-mode .navbar {
    background-color: #1f2635 !important;
}

.dark-mode .nav-link {
    color: #f7fafc !important;
}

.dark-mode .btn-outline-primary {
    color: #f7fafc;
    border-color: #f7fafc;
}

.dark-mode .btn-outline-primary:hover {
    color: #1a202c;
    background-color: #f7fafc;
}

.dark-mode .text-gray-700 {
    color: #e2e8f0 !important;
    /* A light gray that's readable on dark backgrounds */
}

/* If you want to make all paragraph text light in dark mode */
.dark-mode p {
    color: #e2e8f0 !important;
}

/* For any other text elements that need to be light in dark mode */
.dark-mode .text-gray-600,
.dark-mode .text-gray-800 {
    color: #cbd5e0 !important;
    /* Slightly different shade for hierarchy */
}

/* Dark mode shadow adjustments */
.dark-mode .shadow-sm,
.dark-mode .shadow-md,
.dark-mode .shadow-lg,
.dark-mode .shadow-xl,
.dark-mode .shadow-2xl,
.dark-mode .shadow-inner {
    --tw-shadow-color: rgba(255, 255, 255, 0.05) !important;
    --tw-shadow: var(--tw-shadow-colored) !important;
}

.dark-mode .shadow-sm {
    box-shadow: 0 1px 2px 0 var(--tw-shadow-color) !important;
}

.dark-mode .shadow-md {
    box-shadow: 0 4px 6px -1px var(--tw-shadow-color),
        0 2px 4px -1px var(--tw-shadow-color) !important;
}

.dark-mode .shadow-lg {
    box-shadow: 0 10px 15px -3px var(--tw-shadow-color),
        0 4px 6px -2px var(--tw-shadow-color) !important;
}

.dark-mode .shadow-xl {
    box-shadow: 0 20px 25px -5px var(--tw-shadow-color),
        0 10px 10px -5px var(--tw-shadow-color) !important;
}

.dark-mode .shadow-2xl {
    box-shadow: 0 25px 50px -12px var(--tw-shadow-color) !important;
}

.dark-mode .shadow-inner {
    box-shadow: inset 0 2px 4px 0 var(--tw-shadow-color) !important;
}

/* Specific component shadows */
.dark-mode .feature-card:hover,
.dark-mode .pricing-card:hover,
.dark-mode .testimonial-card:hover,
.dark-mode .contact-form:hover {
    box-shadow: 0 20px 25px -5px rgba(255, 255, 255, 0.1),
        0 10px 10px -5px rgba(255, 255, 255, 0.04) !important;
    border: 1px solid !important;
}

.dark-mode .btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1),
        0 4px 6px -2px rgba(255, 255, 255, 0.05) !important;
}

.dark-mode .floating-icon {
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.1) !important;
}

/* About section cards in dark mode */
.dark-mode .team-member {
    background-color: #2d3748 !important;
    border: 1px solid #ffffff !important;
    color: #f7fafc !important;
}

/* Company logo cards in dark mode */
.dark-mode .logo-item {
    background-color: #2d3748 !important;
    border: 1px solid #ffffff !important;
    color: #f7fafc !important;
}

/* Optional: Add hover effects for the cards in dark mode */
.dark-mode .team-member:hover,
.dark-mode .logo-item:hover {
    box-shadow: 0 4px 6px -1px rgba(255, 255, 255, 0.1),
        0 2px 4px -1px rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Text color adjustments for these cards */
.dark-mode .team-member p,
.dark-mode .logo-item span {
    color: #e2e8f0 !important;
}

.dark-mode .navbar-toggler {
    background-color: rgba(255, 255, 255, 0.3);
    /* Semi-transparent white */
    border-color: rgba(255, 255, 255, 0.5);
    /* Light border */
}

.dark-mode .navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.4);
    /* Slightly brighter on hover */
    border-color: rgba(255, 255, 255, 0.7);
}

/* Avatar backgrounds in dark mode */
/* .dark-mode .avatar {
    background-color: #4a5568 !important;
    color: #f7fafc !important;
  } */

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
}

#floating-icon-1 {
    top: -15px;
    left: -15px;
    animation: float 6s ease-in-out infinite;
}

#floating-icon-2 {
    top: 50%;
    right: -20px;
    animation: float 5s ease-in-out infinite 1s;
}

#floating-icon-3 {
    bottom: 20px;
    left: 30%;
    animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Feature Cards */
.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--primary) !important;
    color: white !important;
    transform: rotate(15deg) scale(1.1);
}

/* Process Steps */
.process-steps {
    position: relative;
}

.process-step {
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    border-bottom: solid;
    border-top: solid;
    transform: scale(0.95);
}

.process-step:hover {
    opacity: 1;
    border-bottom: none;
    border-top: none;
    transform: scale(1);
    border-left: 4px solid var(--primary);
    border-right: 4px solid var(--danger);
}

.step-number {
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-step:hover .step-number {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Pricing Cards */
.pricing-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.7);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.popular-badge {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.price {
    color: var(--primary);
}

.features-list li {
    padding: 0.25rem 0;
}

/* Testimonials */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.avatar {
    transition: all 0.3s ease;
}

.testimonial-card:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form {
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Footer */
footer a:hover {
    color: white;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .step-number {
        position: static;
        margin-bottom: 1rem;
    }

    .process-step {
        padding-left: 1.5rem;
    }
}


/* Mobile theme toggle button */
#theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .d-lg-block .d-none {
        display: block !important;
    }

    #mobile-theme-toggle {
        display: none !important;
    }
}


.video-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container video {
    margin-top: 5rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 100%;
}