/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 600px;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(244, 114, 182, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.2) 0%, transparent 50%);
    animation: pulseAnimation 8s ease-in-out infinite;
    z-index: 1;
}

.hero-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: floatIcon 6s ease-in-out infinite;
}

.hero-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-icon:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.hero-icon:nth-child(3) {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}

.hero-icon:nth-child(4) {
    bottom: 35%;
    right: 10%;
    animation-delay: 3s;
}

.hero-icon:nth-child(5) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation-delay: 4s;
}

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

.hero-section h1 {
    color: rgb(73, 60, 146);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    color: rgba(179, 177, 232, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-section .btn-gradient {
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section .btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #60a5fa, #f472b6);
    transition: all 0.5s ease;
}

.hero-section .btn-gradient:hover::before {
    left: 0;
}

.hero-section .btn-gradient span {
    position: relative;
    z-index: 1;
}

.hero-section .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 114, 182, 0.3);
}

.hero-section .btn-outline-light {
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-section .btn-outline-light:hover::before {
    left: 0;
}

.hero-section .btn-outline-light:hover {
    color: #f472b6;
}

@keyframes gradientAnimation {
    0% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

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

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

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }

    .hero-icon {
        font-size: 1.5rem;
    }

    .hero-icon:nth-child(5) {
        font-size: 2rem;
    }
}

/* Services Section Styles */
.services-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.services-bg-gradient {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    transform: rotate(-15deg);
    z-index: 0;
}

.bg-gradient-dark {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

.hover-card {
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.2);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C850C0 0%, #4158D0 100%);
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.service-icon-wrapper svg {
    width: 30px;
    height: 30px;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #C850C0 0%, #4158D0 100%);
    color: white;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #C850C0 0%, #FFCC70 100%);
    color: white;
}

.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-stats .badge {
    font-size: 0.875rem;
}

/* Contact Section Styles */
.contact-section {
    background-color: #f8f9fa;
}

.contact-pill {
    background: linear-gradient(135deg, #C850C0 0%, #4158D0 100%);
    color: white;
    padding: 0.5rem 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.emergency-card {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.btn-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .services-bg-gradient {
        display: none;
    }
}

/* Services Section Styles */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.service-card .btn-gradient {
    pointer-events: none;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    background: linear-gradient(45deg, #C850C0, #4158D0);
    border: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Process Section Styles */
.process-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
    height: 100%;
}

.process-number span {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #C850C0, #4158D0);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* News Section Styles */
.news-card {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
}

.news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, #C850C0, #4158D0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 1rem 0 0;
    font-size: 0.875rem;
}

.news-content {
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 1rem 1rem;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.news-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Technology Stack Section Styles */
.tech-section {
    background-color: #f8f9fa;
}

.tech-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.tech-slider {
    display: flex;
    align-items: center;
    animation: slide 20s linear infinite;
}

.tech-slide {
    text-align: center;
    padding: 1rem;
}

.tech-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
}

.tech-label {
    font-size: 0.875rem;
    color: #6b7280;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section Styles */
.contact-info-icon {
    background: linear-gradient(45deg, #C850C0, #4158D0);
    border-radius: 50%;
    padding: 0.75rem;
    margin-right: 1rem;
}

.contact-info-icon i {
    color: white;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.contact-form .btn {
    background: linear-gradient(45deg, #C850C0, #4158D0);
    border: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Section Title Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(45deg, #C850C0, #4158D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #C850C0, #4158D0);
    border-radius: 2px;
}

.section-title:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Service Hero Section Styles */
.service-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0;
    color: white;
}

.industry-hero-section {
    background: linear-gradient(135deg, #ad88ab, #757da4 100%);
    padding: 120px 0;
    color: white;
}


.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,0,128,0.1) 0%, rgba(0,128,255,0.1) 100%);
}

.animated-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,0,128,0.1) 0%, rgba(0,128,255,0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 100px; height: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 150px; height: 150px; top: 60%; right: 10%; animation-delay: 1s; }
.shape-3 { width: 80px; height: 80px; bottom: 20%; left: 20%; animation-delay: 2s; }
.shape-4 { width: 120px; height: 120px; top: 30%; right: 20%; animation-delay: 3s; }

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

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

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

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.text-gradient-pink-blue {
    background: linear-gradient(45deg, #ff0080, #00a2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-gradient-pink-blue {
    background: linear-gradient(45deg, #ff0080, #00a2ff);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-pink-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-features .feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Badge */
.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Image */
.hero-image img {
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-image-wrapper {
    position: relative;
}

.content-badge {
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

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

/* Process Cards */
.process-card {
    padding: 2rem;
    border-radius: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.process-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C850C0 0%, #4158D0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.accordion-button {
    border-radius: 0.5rem !important;
    padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #ff69b4 0%, #4169e1 100%);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.cta-card {
    background: white;
    position: relative;
    overflow: hidden;
}

.cta-decoration .decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-decoration .circle-1 {
    width: 300px;
    height: 300px;
    background: #ff69b4;
    top: -150px;
    right: -150px;
}

.cta-decoration .circle-2 {
    width: 200px;
    height: 200px;
    background: #4169e1;
    bottom: -100px;
    left: -100px;
}

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

/* Utility Classes */
.text-gradient-pink-blue {
    background: linear-gradient(135deg, #ff69b4 0%, #4169e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-pink-blue {
    background: linear-gradient(135deg, #ff69b4 0%, #4169e1 100%);
}

.bg-gradient-pink-blue-soft {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(65, 105, 225, 0.1) 100%);
}

.btn-gradient {
    background: linear-gradient(135deg, #ff69b4 0%, #4169e1 100%);
    color: white;
    border: none;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #ff1493 0%, #1e90ff 100%);
    color: white;
}

.btn-outline-pink-blue {
    border: 2px solid #ff69b4;
    color: #ff69b4;
}

.btn-outline-pink-blue:hover {
    background: linear-gradient(135deg, #ff69b4 0%, #4169e1 100%);
    color: white;
}

/* Service Page Styles */

/* Sub Services Section */
.sub-services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff69b4, #4169e1);
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #4169e1, #ff69b4);
    bottom: -100px;
    left: -100px;
}

.decoration-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#4169e1 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.service-card {
    background: #ffffff;
    border-radius: 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.05);
    border: 1px solid rgba(65, 105, 225, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.1);
    border-color: rgba(255, 105, 180, 0.2);
}

.service-card-inner {
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    transition: all 0.3s ease;
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(65, 105, 225, 0.1));
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(65, 105, 225, 0.2));
}

.text-gradient-pink-blue {
    background: linear-gradient(45deg, #ff69b4, #4169e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-pink-blue {
    background: linear-gradient(45deg, #ff69b4, #4169e1);
}

.bg-gradient-pink-blue-soft {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(65, 105, 225, 0.1));
}

.btn-gradient-pink-blue {
    background: linear-gradient(45deg, #ff69b4, #4169e1);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-pink-blue:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
    background: linear-gradient(45deg, #ff1493, #1e90ff);
}

.service-stats {
    font-size: 0.9rem;
}

.service-stats i {
    transition: all 0.3s ease;
}

.service-stats .text-pink {
    color: #ff69b4 !important;
}

.service-stats .text-blue {
    color: #4169e1 !important;
}

.service-card:hover .service-stats i {
    transform: scale(1.2);
}

.service-tag .badge {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.1), rgba(65, 105, 225, 0.1));
    color: #ff69b4;
}

.service-card:hover .service-tag .badge {
    background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(65, 105, 225, 0.2));
}

.services-tab-list {
    border-radius: 1rem 0 0 1rem;
}
.services-tab-item.active {
    background: linear-gradient(90deg, #2563eb 0%, #a21caf 100%) !important;
    color: #fff !important;
}
.services-tab-item {
    transition: background 0.2s, color 0.2s;
}
.services-tab-item:hover {
    background: linear-gradient(90deg, #2563eb 0%, #a21caf 100%);
    color: #fff;
}

/* Service Page Animations and Styles */
.content-sections {
    position: relative;
    overflow: hidden;
}

/* Timeline Styles */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.1);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transition: height 0.3s ease;
}

.content-section-item {
    position: relative;
}

.content-section-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #4ecdc4;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Background Animation Styles */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 50%;
    animation-delay: -10s;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255,107,107,0.05) 0%,
        rgba(78,205,196,0.05) 50%,
        rgba(255,107,107,0.05) 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 20s infinite linear;
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .timeline-line {
        left: 30px;
    }
    .content-section-item::before {
        left: 30px;
    }
}

/* Content Styles */
.content-text {
    position: relative;
    z-index: 2;
}

.content-body {
    position: relative;
    z-index: 2;
    color: #333;
    line-height: 1.6;
}

.content-body p {
    margin-bottom: 1rem;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.content-body h1, 
.content-body h2, 
.content-body h3, 
.content-body h4, 
.content-body h5, 
.content-body h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.content-body ul, 
.content-body ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-body li {
    margin-bottom: 0.5rem;
}

.content-body a {
    color: #4ecdc4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-body a:hover {
    color: #ff6b6b;
}

/* New Service Card Styles */
.services-section .card {
    position: relative;
    background: linear-gradient(to bottom right, #f472b6, #60a5fa);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 2px;
}

.services-section .card-inner {
    background-color: #ffffff;
    border-radius: inherit;
    height: 100%;
}

.services-section .card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.services-section .card:hover::after {
    width: 100%;
}

.services-section .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px; /* Thickness of the gradient line */
    background: linear-gradient(to right, #f472b6, #60a5fa);
    transition: width 0.3s ease;
}

.services-section .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f472b6, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.services-section .icon-box svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

.services-section .card-title {
    color: #333;
    font-weight: bold;
}

.services-section .service-sub-list li {
    margin-bottom: 0.5rem;
    color: #666;
}

.services-section .service-sub-list li i {
    color: #60a5fa;
    margin-right: 0.5rem;
}

.services-section .card-title a {
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.services-section .card-title a:hover {
    text-decoration: underline !important;
}

.services-section .service-sub-list li a {
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.services-section .service-sub-list li a:hover {
    text-decoration: underline !important;
}

.gradient-text {
    background: linear-gradient(to right, #f472b6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.modern-card {
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(60, 72, 88, 0.08);
    transition: transform 0.2s cubic-bezier(.4,2,.3,1), box-shadow 0.2s;
    background: #fff;
}
.modern-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(60, 72, 88, 0.16);
    border-color: #a21caf;
}
.bg-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #a21caf 100%);
    color: #fff !important;
}
.object-fit-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.badge.bg-gradient {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 1rem;
}
.bg-primary-subtle {
    background: #e0e7ff !important;
    color: #3730a3 !important;
}
.transition-all {
    transition: all 0.2s cubic-bezier(.4,2,.3,1);
}