:root {
    --primary-pink: #0F4C81;
    /* Now your main dark blue from the "R" */
    --primary-orange: #0a90c9;
    /* A strong medium blue from the connector lines */
    --secondary-orange: #29ABE2;
    /* A lighter blue accent */

    --accent-purple: #1C5D99;
    /* Optional: deeper blue for emphasis (was purple) */
    --accent-pink: #4A90E2;
    /* Lively blue for buttons, hovers */
    --accent-yellow: #B3D9F8;
    /* Soft light blue (replaces yellow accent) */

    /* Neutral Colors */
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #334155;

    /* Gradient Utility */
    --brand-gradient-hover: linear-gradient(45deg, var(--accent-purple), var(--accent-pink));
    --brand-gradient: linear-gradient(45deg, var(--primary-pink), var(--primary-orange));

    /* Utility Colors */
    --pure-white: #ffffff;
    --pure-black: #020617;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    background-color: var(--pure-white);
}

/* Navigation */
.navbar {
    background-color: var(--pure-white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    color: var(--dark-gray);
    font-size: 1.8rem;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--primary-pink);
}

.logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: -5px;
    color: var(--primary-orange);
    font-weight: 600;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-pink);
    background-color: rgba(157, 36, 125, 0.1);
}

/* Buttons */
.btn-primary {
    background: var(--brand-gradient);
    border-color: var(--primary-pink);
    color: white;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--brand-gradient-hover);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 36, 125, 0.2);
}

.btn-outline-primary {
    color: var(--primary-pink);
    border-color: var(--primary-pink);
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-pink);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 36, 125, 0.2);
}

.btn-accent {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--secondary-orange);
    border-color: var(--secondary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    background: var(--brand-gradient);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Banners-1920X1080.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.8;
}

/* Feature Cards */
.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-pink);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: white;
}

.feature-icon.blue {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--accent-purple) 100%);
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.feature-icon.teal {
    background: linear-gradient(135deg, #20c997 0%, #0dcaf0 100%);
}

.feature-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

/* Industry Carousel */
.industry-carousel {
    padding: 80px 0;
}

.industry-card {
    border-radius: 12px;
    /* margin: 15px; */
    height: 100%;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    text-align: center;
    /* border: 1px solid var(--medium-gray); */
}

.industry-card:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-gradient);
    color: white;
    font-size: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--dark-gray);
    opacity: 0.2;
}

.carousel-indicators button.active {
    opacity: 1;
    background-color: var(--primary-pink);
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid var(--medium-gray);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: var(--primary-pink);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 3px solid var(--primary-pink);
}

.client-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.client-position {
    color: var(--dark-gray);
    font-size: 0.875rem;
    opacity: 0.8;
}

.text-warning {
    color: var(--primary-orange) !important;
}

/* Pricing Cards */
.pricing-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-header {
    padding: 32px;
    text-align: center;
    background-color: var(--light-gray);
}

.pricing-card.popular .pricing-header {
    background: var(--brand-gradient);
    color: white;
}

.pricing-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.pricing-price {
    font-weight: 800;
    font-size: 3rem;
    margin: 16px 0;
}

.pricing-period {
    font-size: 0.875rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 15px;
    background-color: white;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.pricing-features li.disabled {
    color: var(--medium-gray);
}

.pricing-features li.disabled::before {
    content: '✗';
    color: var(--medium-gray);
}

/* Contact Form */
.contact-form {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--medium-gray);
}

.form-control {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(157, 36, 125, 0.1);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 80px 0 40px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-pink);
}

.footer-tagline {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    font-size: 1.1rem;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-orange);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 40px;
    color: var(--medium-gray);
    font-size: 0.875rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-control-prev {
        left: 0;
    }

    .carousel-control-next {
        right: 0;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--primary-pink) !important;
}

.text-accent {
    color: var(--primary-orange) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange)) !important;
    color: var(--pure-white);
}

.bg-accent {
    background-color: var(--primary-orange) !important;
}

.border-primary {
    border-color: var(--primary-pink) !important;
}



/* Footer Styles */
.footer-dark {
    background: linear-gradient(135deg, var(--dark-gray), var(--pure-black));
    color: var(--pure-white);
    padding: 80px 0 20px;
    position: relative;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    font-weight: 800;
    font-size: 2rem;
    color: var(--pure-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-logo span {
    color: var(--primary-pink);
}

.footer-tagline {
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-description {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-title {
    color: var(--pure-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.7rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--pure-white);
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: var(--primary-pink);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    color: var(--medium-gray);
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-orange);
    margin-top: 3px;
}

/* Newsletter Form */
.newsletter-form .input-group {
    margin-bottom: 10px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--pure-white);
    height: 45px;
}

.newsletter-form .form-control::placeholder {
    color: var(--medium-gray);
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    border-color: var(--primary-pink);
}

.newsletter-form .btn {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Icons */
.social-links h5 {
    color: var(--pure-white);
    margin-bottom: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Copyright Section */
.copyright-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.copyright-text {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.payment-methods {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.payment-methods img {
    padding: 2px;
    background: aliceblue;
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.payment-methods img:hover {
    filter: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange)) !important;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-pink)) !important;
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-dark {
        padding: 60px 0 20px;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 1.8rem;
    }

    .footer-title {
        margin-bottom: 15px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    width: 1rem;
}


/* About Us Section Styles */
#about {
    background-color: var(--pure-white);
}

#about .lead {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

#about .card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

#about .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#about .card h5 {
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    #about .row.align-items-center {
        text-align: center;
    }

    #about img {
        margin-bottom: 2rem;
    }

    #about .d-flex {
        justify-content: center;
    }

    #about .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    #about .btn-link {
        display: inline-block;
        width: auto;
    }
}



/* ======================
       ANIMATIONS & INTERACTIONS
       ====================== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero animations */
.hero-gradient {
    animation: gradientPulse 15s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientPulse {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating animation for hero image */
.floating {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* Feature card animations */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for feature cards */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.feature-card:nth-child(6) {
    transition-delay: 0.6s;
}

/* Industry card hover effect */
.industry-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
}

/* Testimonial card animation */
.testimonial-card {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.testimonial-card:nth-child(even) {
    transform: translateX(50px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Pricing card hover effect */
.pricing-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    position: relative;
    z-index: 2;
}

.pricing-card.popular::before {
    border: 1px solid #fff;
    content: 'Most Popular';
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-orange);
    color: white;
    padding: 1px 6px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

/* Form input animations */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(157, 36, 125, 0.2);
}

/* Button hover effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(157, 36, 125, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 10px 20px rgba(255, 106, 0, 0.3);
}

.btn-outline-primary:hover {
    box-shadow: 0 10px 20px rgba(157, 36, 125, 0.2);
}

/* Ripple effect for buttons */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Navbar animation */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

/* Section entrance animations */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Footer link animations */
.footer-links a {
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-pink);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    width: 20px;
}

/* Social icon animation */
.social-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Back to top button animation */
.back-to-top {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
}

/* About section animations */
#about .card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#about .card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Industry carousel animations */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Demo section form animations */
.contact-form {
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Logo animation */
.navbar-brand {
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

.navbar-brand:hover::after {
    width: 100%;
}


/* Where We Are Section Styles */
#where-we-are {
    background-color: var(--light-gray);
}

.map-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.marker-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(157, 36, 125, 0.2);
}

.marker-pulse {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-pink);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    animation: pulse 2s infinite;
    top: 0;
    left: 0;
}

.marker-label {
    position: absolute;
    white-space: nowrap;
    background: white;
    padding: 1px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    font-weight: 600;
    left: 20px;
    top: -157%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.map-marker:hover .marker-label {
    opacity: 1;
    left: 30px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-marker {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .marker-label {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}


.industry-carousel {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.section-title {
    color: var(--primary-pink);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Industry Cards */
.industry-card {
    position: relative;
    height: 100%;
    border-radius: 12px;
    transition: all 0.3s ease;
    /* margin-bottom: 1.5rem; */
    border: 1px solid var(--medium-gray);
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); */
}

.industry-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 15px 30px rgba(157, 36, 125, 0.15);
         border-color: rgba(157, 36, 125, 0.2); */
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    font-size: 28px;
    background: var(--brand-gradient);
}

.industry-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.industry-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.industry-card:hover .industry-features-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}






/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--pure-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon:after,
.carousel-control-next-icon:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--primary-pink);
}

.carousel-control-prev-icon:after {
    content: "\f053";
}

.carousel-control-next-icon:after {
    content: "\f054";
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background: var(--brand-gradient);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
    .industry-carousel {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .industry-features-popup {
        position: static;
        box-shadow: none;
        padding: 1rem 0 0 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
    }

    .industry-card.active .industry-features-popup {
        display: block;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }
}

/* Button Styles */
.btn-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--accent-pink);
    transform: translateX(5px);
}

.btn-link i {
    transition: all 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(3px);
}


/* Industry Cards Styles */
.industry-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.industry-card-inner {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 370px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.industry-card:hover .industry-card-inner,
.industry-card.active .industry-card-inner {
    transform: rotateY(180deg);
}

.industry-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50%;
    font-size: 30px;
}

.industry-card h4 {
    margin-bottom: 15px;
    text-align: center;
}

.industry-card p {
    color: #666;
    text-align: center;
    margin-bottom: 20px;
}

.industry-features {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: white;
    border-radius: 10px;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-features h5 {
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-pink);
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-pink);
}

.feature-list li:last-child {
    border-bottom: none;
}



/* Mobile-specific styles */
@media (max-width: 768px) {
    .industry-card-inner {
        transform: none !important;
        height: auto;
    }

    .industry-features {
        position: relative;
        transform: none;
        backface-visibility: visible;
        padding: 20px 0 0 0;
        display: none;
    }

    .industry-card.active .industry-features {
        display: block;
    }
}


@media (max-width: 768px) {
    #whoweserve img {
        margin-bottom: 2rem;
    }
}

.navbar-brand img {
    height: 70px;
}

.footer-logo img {
    background-color: white;
    border-radius: 10px;
    height: 70px;
}


/* Video Section Styles */
.video-container {
    position: relative;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
}

.video-placeholder {
    position: relative;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-placeholder img {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-container:hover .play-button {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.embed-responsive::before {
    display: block;
    content: "";
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}

.embed-responsive-item {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767.98px) {
    #industryCarousel .carousel-item .row>div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    #industryCarousel .carousel-item .row>div:last-child {
        margin-bottom: 0;
    }
}

.section-title1 {
    color: var(--primary-pink);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

/* Why Choose Section Styles */
#why-choose .feature-card {
    transition: transform 0.3s ease;
    border-radius: 12px;
    padding: 25px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#why-choose .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.feature-benefits li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.bg-purple {
    background-color: #6f42c1 !important;
}