/* Modern Tailwind + Bootstrap Integration Styles */

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ef233c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 8px 0;
    animation: slideDown 0.3s ease;
}

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

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #ef233c10, #ef233c20);
    color: #ef233c;
    transform: translateX(4px);
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #000000 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(239, 35, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(239, 35, 60, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    background: linear-gradient(135deg, #ef233c 0%, #ff6b6b 50%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(239, 35, 60, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(239, 35, 60, 0.5));
    }
}

.hero-btn .btn {
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-btn .btn::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 ease;
}

.hero-btn .btn:hover::before {
    left: 100%;
}

.hero-btn .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 35, 60, 0.3);
}

/* Card Styles */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
/* Add this to your style.css */
.liquid-flow {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(240, 249, 255, 0.6), rgba(255, 255, 255, 0.8));
    background-size: 200% 100%;
    animation: flow 8s ease infinite;
    backdrop-filter: blur(10px);
}

@keyframes flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(239, 35, 60, 0.2);
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(239, 35, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ef233c, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(239, 35, 60, 0.15);
}

.stat-icon {
    background: linear-gradient(135deg, #ef233c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Cards */
.service-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(239, 35, 60, 0.08);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 35, 60, 0.03), rgba(239, 35, 60, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(239, 35, 60, 0.15);
    border-color: rgba(239, 35, 60, 0.2);
}

.service-icon {
    background: linear-gradient(135deg, #ef233c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(239, 35, 60, 0.3));
}

/* Portfolio Cards */
.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-card .image-container {
    overflow: hidden;
    position: relative;
}

.portfolio-card .image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 35, 60, 0.8), rgba(220, 38, 38, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .image-container::after {
    opacity: 1;
}

.portfolio-card img {
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-title {
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: #ef233c !important;
    transform: translateY(-2px);
}

/* Blog Cards */
.blog-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(239, 35, 60, 0.05);
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(239, 35, 60, 0.15);
}

.blog-img {
    overflow: hidden;
}

.blog-img img {
    transition: transform 0.4s ease;
}

.blog-item:hover .blog-img img {
    transform: scale(1.05);
}

/* FAQ Styles */
.faq-item {
    border-radius: 16px;
    border: 1px solid rgba(239, 35, 60, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(239, 35, 60, 0.2);
    box-shadow: 0 8px 32px rgba(239, 35, 60, 0.1);
}

.faq-question {
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(239, 35, 60, 0.03), rgba(239, 35, 60, 0.08));
}

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

.faq-question:hover .faq-icon {
    transform: scale(1.1);
}

/* Section Headers */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ef233c, #ff6b6b);
    border-radius: 2px;
    transform: translateX(-50%);
}

/* Smooth Animations */
.fadeInLeft, .fadeInRight, .fadeInUp, .zoomIn {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

.fadeInRight {
    animation-name: fadeInRight;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .modern-card, .service-item {
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
}

/* Swiper Customization */
.swiper-slide {
    transition: all 0.3s ease;
}

.swiper-slide:hover {
    transform: translateY(-4px);
}

.swiper-slide img {
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.swiper-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}