
.home-content {
    margin-left: 220px;
}

.hero-section {
    background-color: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0fff4 100%);
    min-height: 100vh;
    
}
.hero-section .blur-effect {
  max-width: 150vw; 
  max-height: 150vh;
}
.hero-description {
    max-width: 60rem;
}

.hero-bg-1 {
    top: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    mix-blend-mode: multiply;
    filter: blur(40px);
}

.hero-bg-2 {
    top: 10rem;
    right: 5rem;
    width: 20rem;
    height: 20rem;
    mix-blend-mode: multiply;
    filter: blur(40px);
}

.hero-bg-3 {
    bottom: -5rem;
    left: 10rem;
    width: 24rem;
    height: 24rem;
    mix-blend-mode: multiply;
    filter: blur(40px);
}

/* Text Gradient Effects */
.text-gradient {
    background: linear-gradient(135deg, #0d6efd, #130bea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #1f58f6, #6391fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Background Gradient Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd, #6ea8fe) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4cd1eb, #798ad8) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #0dcaf0, #9ec5fe) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #ffda6a) !important;
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545, #f1aeb5) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d, #adb5bd) !important;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #212529, #495057) !important;
}

/* Animation Classes */
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animation-delay-2s {
    animation-delay: 2s;
}

.animation-delay-4s {
    animation-delay: 4s;
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Feature Cards */
.feature-card {
    transition: all 0.5s ease;
    overflow: hidden;
    margin-right: 20%;
    width: 60%;
}
#features .row {
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(25, 135, 84, 0.05));
    opacity: 0;
    
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.card-body{
    background-color: #ffffff;

}


.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.features-description {
    max-width: 48rem;
}

/* Hero Content Animation */
.hero-content {
    transition: all 1s ease-out;
}

.hero-content.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Feature Card Staggered Animation */
.feature-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Scroll Indicator */
.scroll-indicator {
    cursor: pointer;
}

.scroll-indicator-body {
    width: 1.5rem;
    height: 2.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    margin-top: 0.5rem;
}

/* Contact Form Styling */
.contact-form-container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.contact-form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-textarea {
    resize: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
     .home-content {
    margin-left: 0px;
    }
    .scroll-indicator{
        opacity: 0!important;

    }

    .hero-section {
        padding: 2rem 0;
    }
    
    .display-1 {
        font-size: 3rem;
    }
    
    .feature-card .d-flex {
        flex-direction: column;
        text-align: center;
        
    }
    
    .feature-card .flex-shrink-0 {
        margin-bottom: 1rem;
        margin-right: 0 !important;
        
    }
    .feature-card {
    transition: all 0.5s ease;
    overflow: hidden;
    margin-right: 0;
    width: unset;
    }
    .flex-shrink-0{
       align-items: center!important;
       
    }

}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States for Keyboard Navigation */
a:focus, button:focus, .btn:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #0d6efd, #192487);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0b5ed7, #157347);
}