:root {
    --gradient-start: rgba(79, 70, 229, 0.1);
    --gradient-end: rgba(147, 51, 234, 0.1);
    --primary: #673ab7;
    --primary-light: #9575cd;
    --primary-dark: #4527a0;
    --secondary: #ff7b6b;
    --secondary-light: #ff9d91;
    --accent: #ff9100;
    --accent-light: #ffab40;
    --complementary: #00e5ff;
    --text-dark: #2c1810;
    --text-light: #6B7280;
    --gradient-purple: linear-gradient(135deg, #673ab7 0%, #9c27b0 100%);
    --gradient-accent: linear-gradient(135deg, #673ab7 0%, #9c27b0 100%);
}
body {
    padding-top: 70px;
    background: linear-gradient(135deg, #f3f4f6 0%, #fff 100%);
    min-height: 200vh;
    font-family: 'Inter', sans-serif;
}
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.glass-header.scrolled::before {
    opacity: 1;
}

.glass-header .container {
    position: relative;
}

.navbar {
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), #9333EA);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #9333EA);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0;
}

.cta-button {
    position: relative;
    background: linear-gradient(135deg, var(--primary), #9333EA);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    text-decoration: none;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9333EA, var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.25);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button span {
    position: relative;
    z-index: 1;
}
.thank-you-container {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
    padding-bottom: 30px;
    padding-top: 100px;
}

.thank-you-message h1 {
    font-size: 2.5rem;
    color: #673ab7;
    margin-bottom: 10px;
}

.thank-you-message p {
    font-size: 1rem;
    margin-bottom: 20px;
}
/* Shiny effect */
.shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    100% {
        transform: translateX(100%);
    }
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.bp-modal .modal-content {
    border-radius: 20px;
    border: none;
    background: linear-gradient(180deg, #f3e8ff 0%, #ffffff 100%);
}

.bp-modal .modal-header {
    border-bottom: none;
    padding: 2rem 2rem 0;
}

.bp-modal .modal-body {
    padding: 2rem;
}

.bp-modal .modal-title {
    color: #333;
    font-weight: 600;
    font-size: 1.75rem;
}

.bp-modal .btn-close {
    background-color: #7c3aed;
    opacity: 0.8;
    border-radius: 50%;
    padding: 0.75rem;
}

.bp-modal .form-label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bp-modal .form-control {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bp-modal .form-control:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.bp-modal select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%237c3aed' d='M8 10.5l-4-4h8l-4 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.bp-modal .form-group {
    margin-bottom: 1.5rem;
}

.bp-modal .submit-btn {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bp-modal .submit-btn:hover {
    background: #6d28d9;
    transform: translateY(-2px);
}

@media (min-width: 576px) {
    .bp-modal .modal-dialog {
        max-width: 500px;
    }
}
.hero-section {
    padding: 2rem 0;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

/* Creative background elements */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(103, 58, 183, 0.1) 0%, rgba(103, 58, 183, 0) 70%);
    top: -300px;
    left: -200px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0) 70%);
    bottom: -200px;
    right: -100px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
}
.features-list {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.feature-item {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Decorative geometric shapes */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 50px;
    height: 50px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    transform: rotate(45deg);
    animation: rotate 20s linear infinite;
}

.shape-2 {
    width: 30px;
    height: 30px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: float 15s ease-in-out infinite;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--complementary);
    bottom: 20%;
    left: 20%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: spin 25s linear infinite;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.whatsapp-cta {
    position: fixed;
    bottom: 20px;
    right: 160px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 25px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-icon {
    font-size: 24px;
}

@media (max-width: 768px) {
    .whatsapp-cta {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        padding: 12px 20px;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        margin: 0;
    }
}

.call-cta {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.call-cta:hover {
    transform: scale(1.1);
}

.call-btn {
    background-color: #007BFF;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-btn:hover {
    background-color: #0056b3;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.call-icon {
    font-size: 24px;
    transform: rotate(-150deg);  /* Anticlockwise rotation */
}

.call-ring {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ring 1.5s infinite;
}

@keyframes ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .call-cta {
        bottom: 85px;
        right: 15px;
    }

    .call-btn {
        padding: 12px 20px;
    }

    .call-text {
        display: none;
    }

    .call-icon {
        margin: 0;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: var(--text-dark);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}
.section-title span {
    color: var(--primary);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-description {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

/* Reviews Section */
.reviews-wrapper {
    margin-top: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.review-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(103, 58, 183, 0.08);
    border: 1px solid rgba(103, 58, 183, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(103, 58, 183, 0.12);
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.review-content {
    display: flex;
    flex-direction: column;
}

.review-stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.review-rating {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2D3748;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.review-count {
    color: #718096;
    font-size: 0.875rem;
}

/* Add animations */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.review-card {
    animation: floatAnimation 3s ease-in-out infinite;
}

.review-card:nth-child(2) {
    animation-delay: 1.5s;
}
/* Form Styles */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(103, 58, 183, 0.1);
    border: 1px solid rgba(103, 58, 183, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-purple);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(103, 58, 183, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(103, 58, 183, 0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(103, 58, 183, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-purple);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-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.7s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(103, 58, 183, 0.2);
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .reviews-container {
        flex-direction: column;
    }
    .features-list {
        flex-direction: column;
        gap: 1.25rem;
    }
    .contact-form {
        margin-top: 2rem;
    }
}
.clients-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-title p {
    color: #718096;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.gradient-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #673ab7, #9c27b0);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Logo Slider Styles */
.dma-partners-showcase {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.dma-showcase-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.dma-showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.dma-showcase-title span {
    color: var(--primary);
}
.dma-showcase-description {
    color: #718096;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.dma-title-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #673ab7, #9c27b0);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* Logo Slider Styles */
/* .partner-track {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.partner-card {
    width: 250px;
    padding: 1.5rem;
}

.logo-wrapper {
    width: 180px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    max-width: 100%;
    max-height: 70%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-name {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
}

.logo-wrapper:hover .partner-logo {
    opacity: 1;
}

.logo-wrapper:hover .partner-name {
    color: #333;
}

.slider-container {
    background: white;
    border-radius: 16px;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Continuous Scroll Animation */
/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* Adjust based on number of slides */
    
 

/* Gradient Edges */
/* .slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
} */

/* .slider-container::before {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, white 100%);
} */

/* Mobile Styles */
/* @media (max-width: 992px) {
    .partner-track {
        animation: scrollMobile 20s linear infinite;
    }

    .partner-card {
        width: 200px;
    }

    .logo-wrapper {
        width: 160px;
        height: 120px;
    }

    @keyframes scrollMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 2)); /* Adjust for mobile width */
            .partner-section {
                padding: 50px 0;
                background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
                position: relative;
                overflow: hidden;
            }
    
            .category-container {
                background: white;
                border-radius: 15px;
                padding: 15px;
                box-shadow: 0 5px 20px rgba(103, 58, 183, 0.08);
                margin-bottom: 12px;
                overflow: hidden;
                border: 1px solid rgba(103, 58, 183, 0.1);
            }
    
            .category-title {
                font-size: 1.4rem;
                color: var(--primary-dark);
                margin-bottom: 20px;
                padding-left: 18px;
                border-left: 4px solid var(--primary);
                font-weight: 600;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
    
            .category-title::after {
                content: '';
                height: 2px;
                width: 80%;
                background: linear-gradient(to right, var(--primary-light) 0%, transparent 100%);
                margin-left: 20px;
            }
    
            .logo-track {
                display: flex;
                width: fit-content;
                animation: scroll 15s linear infinite;
                padding: 10px 0;
            }
    
            .logo-track:hover {
                animation-play-state: paused;
            }
    
            @keyframes scroll {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
    
            .logo-slider {
                overflow: hidden;
                position: relative;
                padding: 10px 0;
                background: linear-gradient(to bottom, rgba(103, 58, 183, 0.03), transparent);
            }
    
            .logo-slide {
                padding: 20px;
                flex-shrink: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                height: 220px;
                width: 300px;
                transition: all 0.3s ease;
                position: relative;
            }
    
            .logo-slide::after {
                content: '';
                position: absolute;
                top: 10px;
                bottom: 10px;
                right: 0;
                width: 1px;
                background: linear-gradient(to bottom, transparent, rgba(103, 58, 183, 0.1), transparent);
            }
    
            .logo-image-wrapper {
                height: 150px;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 15px;
                background: white;
                border-radius: 12px;
                box-shadow: 0 5px 15px rgba(103, 58, 183, 0.08);
                border: 1px solid rgba(103, 58, 183, 0.05);
                transition: all 0.3s ease;
            }
    
            .logo-slide:hover .logo-image-wrapper {
                transform: translateY(-5px);
                box-shadow: 0 8px 20px rgba(103, 58, 183, 0.12);
                border-color: rgba(103, 58, 183, 0.1);
            }
    
            .logo-slide img {
                max-width: 100%;
                max-height: 150px;
                object-fit: contain;
                /* filter: grayscale(100%); */
                opacity: 0.85;
                transition: all 0.4s ease;
            }
    
            .logo-slide:hover img {
                filter: grayscale(0%);
                opacity: 1;
            }
    
            .logo-title {
                font-size: 0.95rem;
                color: #555;
                text-align: center;
                margin-top: 15px;
                line-height: 1.3;
                font-weight: 500;
                transition: all 0.3s ease;
                padding: 8px 15px;
                border-radius: 20px;
                background: rgba(103, 58, 183, 0.05);
                max-width: 90%;
            }
    
            .logo-slide:hover .logo-title {
                color: var(--primary-dark);
                background: rgba(103, 58, 183, 0.1);
                transform: scale(1.02);
            }
    
            .section-header1 {
                text-align: center;
                margin-bottom: 40px;
                position: relative;
                padding-bottom: 20px;
            }
    
            .section-title1 {
                color: var(--primary-dark);
                font-size: 2.2rem;
                font-weight: 700;
                margin-bottom: 15px;
                background: linear-gradient(45deg, var(--primary), var(--primary-dark));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                position: relative;
                display: inline-block;
            }
    
            .section-title1::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 3px;
                background: linear-gradient(to right, var(--primary-light), var(--primary));
                border-radius: 2px;
            }
    
            .section-description1 {
                color: #666;
                font-size: 1.1rem;
                max-width: 700px;
                margin: 20px auto 0;
            }
    
            /* Add gradient overlays for fade effect */
            .logo-slider::before,
            .logo-slider::after {
                content: "";
                position: absolute;
                top: 0;
                width: 120px;
                height: 100%;
                z-index: 2;
                pointer-events: none;
            }
    
            .logo-slider::before {
                left: 0;
                background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
            }
    
            .logo-slider::after {
                right: 0;
                background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
            }
    
            @media (max-width: 768px) {
                .logo-slide {
                    height: 200px;
                    width: 260px;
                    padding: 15px;
                }
                
                .logo-image-wrapper {
                    height: 170px;
                }
                
                .logo-title {
                    font-size: 0.9rem;
                    margin-top: 12px;
                }
            } 
.casestudy-section {
    padding: 60px 0;
    background: #fff;
}

.casestudy-header {
    text-align: center;
    margin-bottom: 50px;
}

.casestudy-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.casestudy-title {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.casestudy-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.casestudy-item{
    padding-bottom: 10px;
}
.casestudy-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    
}

.casestudy-card:hover {
    transform: translateY(-5px);
}

.casestudy-image {
    width: 100%;
    height: 250px;
    object-fit: fill;
}

.casestudy-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.casestudy-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(103, 58, 183, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.casestudy-card-title {
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.casestudy-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.casestudy-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.metric-item {
    flex: 1;
}

.metric-value {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
}

.casestudy-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.casestudy-link:hover {
    color: var(--primary-dark);
}

.casestudy-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.casestudy-link:hover i {
    transform: translateX(5px);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: none;
    background: none;
    color: #666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

.filter-btn:hover:not(.active) {
    background: rgba(103, 58, 183, 0.1);
    color: var(--primary);
}

.casestudy-card {
    transition: all 0.3s ease;
}

.hide-card {
    opacity: 0;
    transform: scale(0.8);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Add animation for showing cards */
.show-card {
    animation: showCard 0.5s forwards;
}

@keyframes showCard {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Background Decorative Elements */
.dma-decor-element {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.dma-decor-top {
    top: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: #673ab7;
    border-radius: 28% 72% 50% 50% / 44% 56% 44% 56%;
    animation: dmaFloat 8s ease-in-out infinite;
}

.dma-decor-bottom {
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: #9c27b0;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: dmaFloat 9s ease-in-out infinite reverse;
}

@keyframes dmaFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, 15px) rotate(5deg); }
}


/* Responsive Styles */
@media (max-width: 768px) {
    .dma-showcase-title {
        font-size: 2rem;
    }
    
    .dma-logo-wrapper {
        width: 150px;
        height: 70px;
    }
}

.bpGrowth-wrapper {
    /* background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)); */
    padding: 36px 0;
}

.bpGrowth-mainTitle {
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.bpGrowth-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.bpGrowth-card:hover {
    transform: translateY(-5px);
}

.bpGrowth-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.bpGrowth-cardTitle {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    padding-left: 10px;
}

.bpGrowth-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 0;
    font-size: 1rem;
}

.bpGrowth-imageContainer {
    width: 550px;
    height: 300px;
    overflow: hidden;
}

.bpGrowth-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bpGrowth-imageContainer {
        width: 122%;
        height: 250px;
    }
    
    .bpGrowth-content {
        padding: 20px;
    }

    .bpGrowth-mainTitle {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .bpGrowth-cardTitle {
        font-size: 1.25rem;
    }

    .bpGrowth-description {
        font-size: 0.95rem;
    }

    .bpGrowth-card {
        margin-bottom: 20px;
    }
}

.hm-services-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hm-section-wrapper {
    position: relative;
    z-index: 2;
}

.hm-header-container {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hm-section-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hm-text-highlight {
    color: var(--primary-dark);
}

.hm-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.hm-service-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1.5rem;
    padding: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(103, 58, 183, 0.1);
    overflow: hidden;
}

.hm-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.05), rgba(255, 123, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hm-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.1);
}

.hm-service-card:hover::before {
    opacity: 1;
}

.hm-service-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.1), rgba(103, 58, 183, 0.05));
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.hm-service-card:hover .hm-service-icon-wrapper {
    transform: scale(1.1);
    /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
    color: white;
}

.hm-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hm-service-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hm-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.hm-estimate-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(103, 58, 183, 0.2);
}

.hm-estimate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(103, 58, 183, 0.3);
}

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

.hm-estimate-button:hover .hm-arrow-icon {
    transform: translateX(5px);
}
.dma-journey-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
    position: relative;
    overflow: hidden;
}

.dma-journey-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.dma-journey-heading {
    font-size: 2.75rem;
    font-weight: 700;
    color: #2d2d3d;
    margin-bottom: 1.5rem;
}

.dma-journey-heading span {
    color:#4527a0;
}

.dma-journey-description {
    font-size: 1.125rem;
    color: #666276;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.dma-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0 4rem;
    position: relative;
}

.dma-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

/* Arrow Connector */
.dma-step::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 2rem;
    color: #673ab7;
    font-size: 1.5rem;
    opacity: 0.5;
}

.dma-step:last-child::after {
    display: none;
}

.dma-step-icon {
    width: 40px;
    height: 40px;
    background: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dma-step-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.1), rgba(255, 123, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dma-step:hover .dma-step-icon {
    transform: translateY(-5px);
    border-color: rgba(103, 58, 183, 0.3);
    box-shadow: 0 10px 20px rgba(103, 58, 183, 0.1);
}

.dma-step:hover .dma-step-icon::before {
    opacity: 1;
}

.dma-step-icon i {
    font-size: 1.75rem;
    color: #673ab7;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.dma-step:hover .dma-step-icon i {
    transform: scale(1.1);
}

.dma-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d3d;
    margin-bottom: 0.75rem;
}

.dma-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #673ab7, #4527a0);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(103, 58, 183, 0.2);
    text-decoration: none;
}

.dma-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(103, 58, 183, 0.3);
}

.dma-cta-button i {
    transition: transform 0.3s ease;
}

.dma-cta-button:hover i {
    transform: translateX(5px);
}
.founder-section {
    background: #ffffff;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(103, 58, 183, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(103, 58, 183, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.section-title {
    color: var(--primary-dark);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

.founders-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 60px;
}

.founder-card {
    display: flex;
    /* align-items: center; */
    gap: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.6s;
}

.founder-card:nth-child(even) {
    flex-direction: row-reverse;
}

.founder-image-container {
    flex: 0 0 400px;
    position: relative;
}

.founder-image-wrapper {
    width: 100%;
    padding-bottom: 120%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.15);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}

.founder-card:nth-child(even) .founder-image-wrapper {
    transform: rotate(3deg);
}

.founder-card:hover .founder-image-wrapper {
    transform: rotate(0) scale(1.02);
}

.founder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-image-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
}

.founder-content {
    flex: 1;
}

.founder-name {
    color: var(--primary-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.founder-role {
    display: inline-block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 8px 20px;
    background: rgba(103, 58, 183, 0.1);
    border-radius: 20px;
}

.founder-bio {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.founder-quote {
    position: relative;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(103, 58, 183, 0.05) 0%, rgba(103, 58, 183, 0.1) 100%);
    border-radius: 20px;
    font-style: italic;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(103, 58, 183, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(103, 58, 183, 0.1);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 0.8s;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media (max-width: 991px) {
    .founder-card {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .founder-image-container {
        flex: 0 0 300px;
    }
    /* .founder-image-bg{
        display: none;
    } */
    .social-links {
        justify-content: center;
    }

    .founder-quote {
        text-align: left;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
    }
}

.consultation-wrapper {
    background: var(--primary-dark);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}

.consultation-inner {
    position: relative;
    z-index: 2;
}

.consultation-circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.1;
    right: -80px;
    top: -120px;
}

.consultation-title {
    font-size: 2rem;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
}

.consultation-subtitle {
    color: var(--primary-light);
    display: block;
    font-size: 1.8rem;
    margin-top: 5px;
}

.consultation-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 0;
    line-height: 1.5;
}

.consultation-btn {
    display: inline-block;
    background: var(--primary-light);
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.consultation-btn:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.consultation-btn i {
    margin-left: 8px;
}

@media (max-width: 768px) {
    .consultation-title {
        font-size: 1.8rem;
    }
    
    .consultation-subtitle {
        font-size: 1.6rem;
    }

    .consultation-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .consultation-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
}
.bp-resources-wrapper {
    padding: 37px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
        position: relative;
        overflow: hidden; /* Add this to contain the floating elements */
    
}

.bp-resources-header-container {
    text-align: center;
    margin-bottom: 50px;
}

.bp-resources-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d1d44;
    margin-bottom: 1.5rem;
}

.bp-title-accent {
    color: #673ab7;
    font-weight: 600;
}

.bp-resources-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.bp-video-container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bp-video-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.bp-video-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(103, 58, 183, 0.1);
}

.bp-video-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--bp-primary-dark);
}

.bp-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bp-video-content-box {
    padding: 20px;
}

.bp-video-content-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d1d44;
    margin-bottom: 10px;
    line-height: 1.4;
}

.bp-video-content-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.bp-enquiry-banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-top: 50px;
    background: linear-gradient(135deg, var(--bp-primary-light), var(--bp-primary));
    border-radius: 15px;
}

.bp-enquiry-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

.bp-call-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--bp-primary);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bp-call-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--bp-primary);
}

.bp-call-icon {
    width: 20px;
    height: 20px;
}
.bp-decor-top {
    position: absolute;
    /* top: 10%; */
    left: 5%;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 28% 72% 50% 50% / 44% 56% 44% 56%;
    animation: bpFloat 8s ease-in-out infinite;
    opacity: 0.1;
    pointer-events: none;
}

.bp-decor-bottom {
    position: absolute;
    /* bottom: 1%; */
    right: 8%;
    width: 80px;
    height: 80px;
    background: #9c27b0;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation: bpFloat 9s ease-in-out infinite reverse;
    opacity: 0.1;
    pointer-events: none;
}

@keyframes bpFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(5px, -5px) rotate(-5deg);
    }
    75% {
        transform: translate(-10px, 10px) rotate(3deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Add hover effect for the shapes */
.bp-video-item-card:hover ~ .bp-decor-top {
    animation-duration: 4s;
}

.bp-video-item-card:hover ~ .bp-decor-bottom {
    animation-duration: 4s;
}
.hero-section1 {
    padding: 38px 0 38px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}



.hero-title1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-subtitle1 {
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.service-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.service-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px auto 0;
    width: 75%;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(103, 58, 183, 0.1);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: var(--primary);
    padding: 10px;
    background: rgba(103, 58, 183, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(103, 58, 183, 0.1);
    transform: scale(1.1);
}

.service-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary);
}

@media (max-width: 1200px) {
    .service-grid {
        /* grid-template-columns: repeat(3, 1fr); */
    }
}

@media (max-width: 992px) {
    .service-grid, .service-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .service-grid, .service-grid-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .hero-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    .hero-subtitle {
        padding: 0 20px;
        font-size: 1rem;
    }
    .service-card {
        padding: 20px 15px;
    }
}
/* Optional: Add more decorative elements */
.bp-decor-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--bp-primary-light);
    border-radius: 41% 59% 48% 52% / 48% 52% 48% 52%;
    animation: bpFloat 10s ease-in-out infinite;
    opacity: 0.08;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.bp-whychoose-section {
    position: relative;
    background: #fff;
}
.bp-whychoose-title{
    font-size: 2.75rem;
    font-weight: 700;
}
.bp-whychoose-title span {
    font-size: 2.75rem;
    font-weight: 700;
    color: #673ab7;
}

.bp-whychoose-item {
    display: flex;
    align-items: start;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 58, 183, 0.1);
}

.bp-whychoose-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(103, 58, 183, 0.1);
    border-color: var(--violet-light);
}

.bp-whychoose-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--violet-primary), var(--violet-light));
    transition: all 0.3s ease;
}

.bp-whychoose-item:hover::before {
    width: 6px;
}

.bp-whychoose-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.bp-whychoose-item:hover .bp-whychoose-icon {
    transform: scale(1.1) rotate(5deg);
}

.bp-whychoose-content h3 {
    color: var(--violet-dark);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.bp-whychoose-number {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(103, 58, 183, 0.05);
    transition: all 0.3s ease;
}

.bp-whychoose-item:hover .bp-whychoose-number {
    color: rgba(103, 58, 183, 0.1);
    transform: scale(1.1);
}

.bp-faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bp-faq-header {
    padding: 1rem 1.5rem;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bp-faq-header:hover {
    background: linear-gradient(135deg, #a594b4, var(--primary));
}

.bp-faq-question {
    font-size: 1rem;
    font-weight: 500;
    color: var(--violet-dark);
    margin: 0;
}

.bp-faq-icon {
    font-size: 1.5rem;
    color: var(--violet-primary);
    transition: transform 0.3s ease;
}

.bp-faq-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bp-faq-item.active .bp-faq-icon {
    transform: rotate(45deg);
}

.bp-faq-item.active .bp-faq-content {
    padding: 1rem 1.5rem;
    max-height: 1000px;
}

/* Form Styles */
.bp-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(103, 58, 183, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.bp-form-input:focus {
    border-color: var(--violet-primary);
    box-shadow: 0 0 0 3px rgba(103, 58, 183, 0.1);
}

.bp-submit-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, var(--violet-primary), var(--violet-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(103, 58, 183, 0.2);
}

.bp-contact-wrapper {
    border: 1px solid rgba(103, 58, 183, 0.1);
}

footer {
    background: #f3f3f3;
    padding: 25px 20px;
    color: #000000;
  }

  footer h3 {
    color: var(--primary-dark);
  }

  footer a {
    color: var(--text-light);
    text-decoration: none;
  }

  footer a:hover {
    color: var(--primary-light);
    text-decoration: underline;
  }

  footer p, footer address {
    color: var(--text-light);
  }

  footer hr {
    border-color: var(--border-color);
  }

  .logo img {
    max-width: 150px;
  }

  .footer-address {
    margin-bottom: 20px;
  }

@media (max-width: 992px) {
    .bp-contact-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 992px) {
    .bp-whychoose-left, 
    .bp-whychoose-right {
        padding: 1rem !important;
    }
}

@media (max-width: 768px) {
    .bp-decor-top,
    .bp-decor-bottom,
    .bp-decor-middle {
        /* Make decorative elements smaller on mobile */
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 992px) {
    .bp-video-container-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bp-resources-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .bp-video-container-grid {
        grid-template-columns: 1fr;
    }

    .bp-resources-main-title {
        font-size: 2rem;
    }

    .bp-enquiry-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .bp-resources-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
}


@media (max-width: 991px) {
    .dma-process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .dma-step {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .dma-step::after {
        content: '↓';
        right: auto;
        top: auto;
        bottom: -2rem;
    }

    .dma-journey-heading {
        font-size: 2.25rem;
    }
}
@media (max-width: 991px) {
    .hm-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hm-section-heading {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hm-services-grid {
        grid-template-columns: 1fr;
    }
}

.social-ic{
    width: 10px;
    height: auto;
}